rk: restore file mode
[firefly-linux-kernel-4.4.55.git] / include / linux / gps.h
1
2 #ifndef __GPS_H__
3 #define __GPS_H__
4
5 //CC&C Johnson.Wang
6 //mtk gps device
7 static struct mt3326_gps_hardware {
8         int (*ext_power_on)(int);
9         int (*ext_power_off)(int);
10 };
11
12 static struct mt3326_gps_hardware mt3326_gps_hw = {
13         .ext_power_on =  NULL,
14         .ext_power_off = NULL,
15 };
16
17 static struct platform_device mt3326_device_gps = {
18         .name           = "mt3326-gps",
19         .id             = -1,
20         .dev            = {
21         .platform_data  = &mt3326_gps_hw,
22         },
23 };
24
25 #endif // __GPS_H__