diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-26 20:36:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-26 20:36:59 +0000 |
commit | 17532417c75f62033cafca01f2d61c81e0d4aa2c (patch) | |
tree | 9a80d3c4ccb5b6ca58bb918f9327eb70fdb8b881 /target/linux/gemini/patches-3.10/002-gemini-rtc.patch | |
parent | b953a14036238c56215999d47dae4008f90b4c85 (diff) | |
download | mtk-20170518-17532417c75f62033cafca01f2d61c81e0d4aa2c.zip mtk-20170518-17532417c75f62033cafca01f2d61c81e0d4aa2c.tar.gz mtk-20170518-17532417c75f62033cafca01f2d61c81e0d4aa2c.tar.bz2 |
gemini: nuke 3.10 support
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45037
Diffstat (limited to 'target/linux/gemini/patches-3.10/002-gemini-rtc.patch')
-rw-r--r-- | target/linux/gemini/patches-3.10/002-gemini-rtc.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/target/linux/gemini/patches-3.10/002-gemini-rtc.patch b/target/linux/gemini/patches-3.10/002-gemini-rtc.patch deleted file mode 100644 index 60ef167..0000000 --- a/target/linux/gemini/patches-3.10/002-gemini-rtc.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- a/drivers/rtc/Kconfig -+++ b/drivers/rtc/Kconfig -@@ -984,6 +984,15 @@ config RTC_DRV_BFIN - This driver can also be built as a module. If so, the module - will be called rtc-bfin. - -+config RTC_DRV_GEMINI -+ tristate "Gemini SoC RTC" -+ help -+ If you say Y here you will get support for the -+ RTC found on Gemini SoC's. -+ -+ This driver can also be built as a module. If so, the module -+ will be called rtc-gemini. -+ - config RTC_DRV_RS5C313 - tristate "Ricoh RS5C313" - depends on SH_LANDISK ---- a/drivers/rtc/Makefile -+++ b/drivers/rtc/Makefile -@@ -51,6 +51,7 @@ obj-$(CONFIG_RTC_DRV_DS3234) += rtc-ds3234.o - obj-$(CONFIG_RTC_DRV_EM3027) += rtc-em3027.o - obj-$(CONFIG_RTC_DRV_EP93XX) += rtc-ep93xx.o - obj-$(CONFIG_RTC_DRV_FM3130) += rtc-fm3130.o -+obj-$(CONFIG_RTC_DRV_GEMINI) += rtc-gemini.o - obj-$(CONFIG_RTC_DRV_GENERIC) += rtc-generic.o - obj-$(CONFIG_RTC_DRV_IMXDI) += rtc-imxdi.o - obj-$(CONFIG_RTC_DRV_ISL1208) += rtc-isl1208.o ---- a/arch/arm/mach-gemini/common.h -+++ b/arch/arm/mach-gemini/common.h -@@ -18,9 +18,9 @@ extern void gemini_map_io(void); - extern void gemini_init_irq(void); - extern void gemini_timer_init(void); - extern void gemini_gpio_init(void); --extern void platform_register_rtc(void); - - /* Common platform devices registration functions */ -+extern int platform_register_rtc(void); - extern int platform_register_uart(void); - extern int platform_register_pflash(unsigned int size, - struct mtd_partition *parts, ---- a/arch/arm/mach-gemini/devices.c -+++ b/arch/arm/mach-gemini/devices.c -@@ -17,6 +17,7 @@ - #include <mach/irqs.h> - #include <mach/hardware.h> - #include <mach/global_reg.h> -+#include "common.h" - - static struct plat_serial8250_port serial_platform_data[] = { - { |