
Move all relative header files to include folder. Change-Id: Ic61a61a88823b4749dbe8c1f680d08201a3b4a48 Signed-off-by: Meng Wang <mengw@codeaurora.org>
33 satır
654 B
C
33 satır
654 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _AQT1000_PDATA_H_
|
|
#define _AQT1000_PDATA_H_
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/device.h>
|
|
#include <asoc/msm-cdc-supply.h>
|
|
|
|
struct aqt1000_micbias_setting {
|
|
u8 ldoh_v;
|
|
u32 cfilt1_mv;
|
|
u32 micb1_mv;
|
|
u8 bias1_cfilt_sel;
|
|
};
|
|
|
|
struct aqt1000_pdata {
|
|
unsigned int irq_gpio;
|
|
unsigned int irq_flags;
|
|
struct cdc_regulator *regulator;
|
|
int num_supplies;
|
|
struct aqt1000_micbias_setting micbias;
|
|
struct device_node *aqt_rst_np;
|
|
u32 mclk_rate;
|
|
u32 ext_clk_rate;
|
|
u32 ext_1p8v_supply;
|
|
};
|
|
|
|
#endif /* _AQT1000_PDATA_H_ */
|