diff options
author | John Crispin <blogic@openwrt.org> | 2012-08-03 08:53:02 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-08-03 08:53:02 +0000 |
commit | ce06d1cf7baeb10aa3ffef90f51ee4c3a0b81a46 (patch) | |
tree | 81a9746583b2c1c212f8c35a51d07d9353080561 /target/linux/lantiq/patches-3.3/0020-MIPS-lantiq-helper-functions-for-SoC-detection.patch | |
parent | a8facfad2aeb3c4eb9c5ee01f646fefd3f992351 (diff) | |
download | upstream-ce06d1cf7baeb10aa3ffef90f51ee4c3a0b81a46.tar.gz upstream-ce06d1cf7baeb10aa3ffef90f51ee4c3a0b81a46.tar.bz2 upstream-ce06d1cf7baeb10aa3ffef90f51ee4c3a0b81a46.zip |
[lantiq] cleanup patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32953 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/patches-3.3/0020-MIPS-lantiq-helper-functions-for-SoC-detection.patch')
-rw-r--r-- | target/linux/lantiq/patches-3.3/0020-MIPS-lantiq-helper-functions-for-SoC-detection.patch | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/target/linux/lantiq/patches-3.3/0020-MIPS-lantiq-helper-functions-for-SoC-detection.patch b/target/linux/lantiq/patches-3.3/0020-MIPS-lantiq-helper-functions-for-SoC-detection.patch deleted file mode 100644 index 9a9094980d..0000000000 --- a/target/linux/lantiq/patches-3.3/0020-MIPS-lantiq-helper-functions-for-SoC-detection.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 601e5ea89b1fd6fb8047ea7c23eae6eb1c90145f Mon Sep 17 00:00:00 2001 -From: John Crispin <blogic@openwrt.org> -Date: Tue, 21 Feb 2012 14:25:03 +0100 -Subject: [PATCH 20/70] MIPS: lantiq: helper functions for SoC detection - -Add additional functions for runtime soc detection. We need these for the -serial driver. - -Signed-off-by: John Crispin <blogic@openwrt.org> ---- - .../include/asm/mach-lantiq/falcon/lantiq_soc.h | 16 ++++++++++++++-- - .../mips/include/asm/mach-lantiq/xway/lantiq_soc.h | 5 +++++ - 2 files changed, 19 insertions(+), 2 deletions(-) - ---- a/arch/mips/include/asm/mach-lantiq/falcon/lantiq_soc.h -+++ b/arch/mips/include/asm/mach-lantiq/falcon/lantiq_soc.h -@@ -134,8 +134,20 @@ extern int ltq_gpio_mux_set(unsigned int - #define LTQ_EIU_BASE_ADDR 0 - #define LTQ_EBU_PCC_ISTAT 0 - --#define ltq_is_ar9() 0 --#define ltq_is_vr9() 0 -+static inline int ltq_is_ar9(void) -+{ -+ return 0; -+} -+ -+static inline int ltq_is_vr9(void) -+{ -+ return 0; -+} -+ -+static inline int ltq_is_falcon(void) -+{ -+ return 1; -+} - - #endif /* CONFIG_SOC_FALCON */ - #endif /* _LTQ_XWAY_H__ */ ---- a/arch/mips/include/asm/mach-lantiq/xway/lantiq_soc.h -+++ b/arch/mips/include/asm/mach-lantiq/xway/lantiq_soc.h -@@ -164,5 +164,10 @@ static inline int ltq_is_vr9(void) - return (ltq_get_soc_type() == SOC_TYPE_VR9); - } - -+static inline int ltq_is_falcon(void) -+{ -+ return 0; -+} -+ - #endif /* CONFIG_SOC_TYPE_XWAY */ - #endif /* _LTQ_XWAY_H__ */ |