Hello. On 20-06-2011 23:26, Gabor Juhos wrote:
Signed-off-by: Gabor Juhos<juhosg@xxxxxxxxxxx> --- arch/mips/ath79/setup.c | 12 ++++++++++++ arch/mips/include/asm/mach-ath79/ar71xx_regs.h | 4 ++++ arch/mips/include/asm/mach-ath79/ath79.h | 4 +++- 3 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c index dea5af1..4cbd5e0 100644 --- a/arch/mips/ath79/setup.c +++ b/arch/mips/ath79/setup.c @@ -116,6 +116,18 @@ static void __init ath79_detect_sys_type(void) rev = id& AR724X_REV_ID_REVISION_MASK; break; + case REV_ID_MAJOR_AR9330: + ath79_soc = ATH79_SOC_AR9330; + chip = "9330"; + rev = (id & AR933X_REV_ID_REVISION_MASK); + break; + + case REV_ID_MAJOR_AR9331: + ath79_soc = ATH79_SOC_AR9331; + chip = "9331"; + rev = (id & AR933X_REV_ID_REVISION_MASK);
Hm, you've just removed such parens in the previous patch, why add more of them? :-O
WBR, Sergei