mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
8faf76b6d4
Update type from u8 to uint8_t for trepn daemon usage from userspace. Also expose the psoc structures for trepn's use. Change-Id: I840a480432493303b105396d522ebdcb1cf9079a Signed-off-by: Siddartha Mohanadoss <smohanad@codeaurora.org>
17 lines
381 B
C
17 lines
381 B
C
#ifndef __EPM_ADC_H
|
|
#define __EPM_ADC_H
|
|
|
|
#include <linux/i2c.h>
|
|
#include <uapi/linux/epm_adc.h>
|
|
|
|
struct epm_adc_platform_data {
|
|
struct epm_chan_properties *channel;
|
|
uint32_t num_channels;
|
|
uint32_t num_adc;
|
|
uint32_t chan_per_adc;
|
|
uint32_t chan_per_mux;
|
|
struct i2c_board_info epm_i2c_board_info;
|
|
uint32_t bus_id;
|
|
uint32_t gpio_expander_base_addr;
|
|
};
|
|
#endif /* __EPM_ADC_H */
|