| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH 01/13] MIPS: ath79: remove superfluous parentheses |
| From: | Gabor Juhos <juhosg@openwrt.org> |
| Date: | Mon, 20 Jun 2011 21:26:01 +0200 |
| Cc: | linux-mips@linux-mips.org, Kathy Giori <kgiori@qca.qualcomm.com>, "Luis R. Rodriguez" <rodrigue@qca.qualcomm.com>, Gabor Juhos <juhosg@openwrt.org> |
| In-reply-to: | <1308597973-6037-1-git-send-email-juhosg@openwrt.org> |
| References: | <1308597973-6037-1-git-send-email-juhosg@openwrt.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
---
arch/mips/ath79/setup.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c
index 159b42f..dea5af1 100644
--- a/arch/mips/ath79/setup.c
+++ b/arch/mips/ath79/setup.c
@@ -101,19 +101,19 @@ static void __init ath79_detect_sys_type(void)
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:
--
1.7.2.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: flush_kernel_vmap_range() invalidate_kernel_vmap_range() API not exists for MIPS, Ralf Baechle |
|---|---|
| Next by Date: | [PATCH 00/13] MIPS: ath79: add initial support for AR933X SoCs, Gabor Juhos |
| Previous by Thread: | [PATCH 00/13] MIPS: ath79: add initial support for AR933X SoCs, Gabor Juhos |
| Next by Thread: | [PATCH 02/13] MIPS: ath79: add revision id for the AR933X SoCs, Gabor Juhos |
| Indexes: | [Date] [Thread] [Top] [All Lists] |