Merge remote-tracking branch 'linux-2.6.32.y/master' into develop
[firefly-linux-kernel-4.4.55.git] / include / linux / mu509.h
1 #include <linux/types.h>
2 #include <linux/ioctl.h>
3 #include <linux/miscdevice.h>
4
5 struct modem_dev
6 {
7         const char *name;
8         struct miscdevice miscdev;
9         struct work_struct work;
10 };
11
12 /* 耳机数据结构体 */
13 struct rk29_mu509_data {
14         int (*io_init)(void);
15         int (*io_deinit)(void);
16         unsigned int bp_power;
17         unsigned int bp_power_active_low;
18         unsigned int bp_reset;
19         unsigned int bp_reset_active_low;
20         unsigned int bp_wakeup_ap;
21         unsigned int ap_wakeup_bp;
22 };
23
24 #define MODEM_NAME "mu509"