Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27986e14 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "includes: Fix more headers to work with KERNEL_HEADER_TEST"

parents 70061f9e 1155af87
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
 * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
 */

#ifndef __QCOM_ADC_TM_H_CLIENTS__
#define __QCOM_ADC_TM_H_CLIENTS__

#include <linux/types.h>

struct adc_tm_chip;

/**
@@ -69,6 +71,8 @@ struct adc_tm_param {
						void *ctx);
};

struct device;

/* Public API */
#if IS_ENABLED(CONFIG_QTI_ADC_TM)
struct adc_tm_chip *get_adc_tm(struct device *dev, const char *name);
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@
#ifndef __HH_HCALL_COMMON_H
#define __HH_HCALL_COMMON_H

#include <linux/types.h>

struct hh_hcall_args {
	unsigned long arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7;
};
+2 −0
Original line number Diff line number Diff line
@@ -7,6 +7,8 @@
#ifndef __HH_COMMON_H
#define __HH_COMMON_H

#include <linux/types.h>

/* Common Haven types */
typedef u16 hh_vmid_t;
typedef u32 hh_rm_msgid_t;
+2 −0
Original line number Diff line number Diff line
@@ -169,6 +169,8 @@ struct hh_rm_notif_vm_console_chars {
	u8 bytes[0];
} __packed;

struct notifier_block;

/* End Notification type APIs */

int hh_rm_register_notifier(struct notifier_block *nb);
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@
#ifndef __HWKM_H_
#define __HWKM_H_

#include <linux/types.h>
#include <stdbool.h>
#include <stddef.h>

Loading