From da2cc2c79a4478ea98fd7e78ab3dfd53c2586198 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Thu, 19 Apr 2012 21:32:05 +0000 Subject: ar71xx: nuke 3.2 support SVN-Revision: 31360 --- ...MIPS-ath79-Remove-superfluous-parentheses.patch | 40 ---------------------- 1 file changed, 40 deletions(-) delete mode 100644 target/linux/ar71xx/patches-3.2/004-MIPS-ath79-Remove-superfluous-parentheses.patch (limited to 'target/linux/ar71xx/patches-3.2/004-MIPS-ath79-Remove-superfluous-parentheses.patch') diff --git a/target/linux/ar71xx/patches-3.2/004-MIPS-ath79-Remove-superfluous-parentheses.patch b/target/linux/ar71xx/patches-3.2/004-MIPS-ath79-Remove-superfluous-parentheses.patch deleted file mode 100644 index e17d06a..0000000 --- a/target/linux/ar71xx/patches-3.2/004-MIPS-ath79-Remove-superfluous-parentheses.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 44f70a7cd3c0a8481877174a0f12b013c5667933 Mon Sep 17 00:00:00 2001 -From: Gabor Juhos -Date: Mon, 20 Jun 2011 21:26:01 +0200 -Subject: [PATCH 04/27] MIPS: ath79: Remove superfluous parentheses - -Signed-off-by: Gabor Juhos -Cc: linux-mips@linux-mips.org -Cc: Kathy Giori -Cc: "Luis R. Rodriguez" -Patchwork: https://patchwork.linux-mips.org/patch/2519/ -Signed-off-by: Ralf Baechle ---- - arch/mips/ath79/setup.c | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) - ---- a/arch/mips/ath79/setup.c -+++ b/arch/mips/ath79/setup.c -@@ -101,19 +101,19 @@ static void __init ath79_detect_sys_type - case REV_ID_MAJOR_AR7240: - ath79_soc = ATH79_SOC_AR7240; - chip = "7240"; -- rev = (id & AR724X_REV_ID_REVISION_MASK); -+ rev = id & AR724X_REV_ID_REVISION_MASK; - break; - - case REV_ID_MAJOR_AR7241: - ath79_soc = ATH79_SOC_AR7241; - chip = "7241"; -- rev = (id & AR724X_REV_ID_REVISION_MASK); -+ rev = id & AR724X_REV_ID_REVISION_MASK; - break; - - case REV_ID_MAJOR_AR7242: - ath79_soc = ATH79_SOC_AR7242; - chip = "7242"; -- rev = (id & AR724X_REV_ID_REVISION_MASK); -+ rev = id & AR724X_REV_ID_REVISION_MASK; - break; - - case REV_ID_MAJOR_AR913X: -- cgit v1.1