From 561172e75520cdaf2c311ee3abcd9a47d1b12189 Mon Sep 17 00:00:00 2001 From: Tao Huang Date: Mon, 5 Nov 2018 15:49:22 +0800 Subject: [PATCH] include/linux: remove unused gps.h Change-Id: Ic84e268cdf9f0dae69a0d548b4774b45b98c745b Signed-off-by: Tao Huang --- include/linux/gps.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 include/linux/gps.h diff --git a/include/linux/gps.h b/include/linux/gps.h deleted file mode 100644 index 3df5d4ecdbbe..000000000000 --- a/include/linux/gps.h +++ /dev/null @@ -1,26 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ - -#ifndef __GPS_H__ -#define __GPS_H__ - -//CC&C Johnson.Wang -//mtk gps device -static struct mt3326_gps_hardware { - int (*ext_power_on)(int); - int (*ext_power_off)(int); -}; - -static struct mt3326_gps_hardware mt3326_gps_hw = { - .ext_power_on = NULL, - .ext_power_off = NULL, -}; - -static struct platform_device mt3326_device_gps = { - .name = "mt3326-gps", - .id = -1, - .dev = { - .platform_data = &mt3326_gps_hw, - }, -}; - -#endif // __GPS_H__