diff options
author | adrian <adrian@FreeBSD.org> | 2010-08-19 12:52:49 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2010-08-19 12:52:49 +0000 |
commit | fc64454ae656958387116f99e7d00a984aabba4d (patch) | |
tree | 9ad01ba2bd281d46207bea3ba6cb16f9ebbc4b84 /sys/mips/atheros/ar71xx_setup.c | |
parent | 031fda74f3ad2d87c3bd0bf56a9a0238424f0ac8 (diff) | |
download | FreeBSD-src-fc64454ae656958387116f99e7d00a984aabba4d.zip FreeBSD-src-fc64454ae656958387116f99e7d00a984aabba4d.tar.gz |
Fix mistaken indenting.
Diffstat (limited to 'sys/mips/atheros/ar71xx_setup.c')
-rw-r--r-- | sys/mips/atheros/ar71xx_setup.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/mips/atheros/ar71xx_setup.c b/sys/mips/atheros/ar71xx_setup.c index 9a405fe..0720d52 100644 --- a/sys/mips/atheros/ar71xx_setup.c +++ b/sys/mips/atheros/ar71xx_setup.c @@ -87,7 +87,7 @@ ar71xx_detect_sys_type(void) minor = id & AR71XX_REV_ID_MINOR_MASK; rev = id >> AR71XX_REV_ID_REVISION_SHIFT; rev &= AR71XX_REV_ID_REVISION_MASK; - ar71xx_cpu_ops = &ar71xx_chip_def; + ar71xx_cpu_ops = &ar71xx_chip_def; switch (minor) { case AR71XX_REV_ID_MINOR_AR7130: ar71xx_soc = AR71XX_SOC_AR7130; @@ -109,21 +109,21 @@ ar71xx_detect_sys_type(void) case REV_ID_MAJOR_AR7240: ar71xx_soc = AR71XX_SOC_AR7240; chip = "7240"; - ar71xx_cpu_ops = &ar724x_chip_def; + ar71xx_cpu_ops = &ar724x_chip_def; rev = (id & AR724X_REV_ID_REVISION_MASK); break; case REV_ID_MAJOR_AR7241: ar71xx_soc = AR71XX_SOC_AR7241; chip = "7241"; - ar71xx_cpu_ops = &ar724x_chip_def; + ar71xx_cpu_ops = &ar724x_chip_def; rev = (id & AR724X_REV_ID_REVISION_MASK); break; case REV_ID_MAJOR_AR7242: ar71xx_soc = AR71XX_SOC_AR7242; chip = "7242"; - ar71xx_cpu_ops = &ar724x_chip_def; + ar71xx_cpu_ops = &ar724x_chip_def; rev = (id & AR724X_REV_ID_REVISION_MASK); break; @@ -131,7 +131,7 @@ ar71xx_detect_sys_type(void) minor = id & AR91XX_REV_ID_MINOR_MASK; rev = id >> AR91XX_REV_ID_REVISION_SHIFT; rev &= AR91XX_REV_ID_REVISION_MASK; - ar71xx_cpu_ops = &ar91xx_chip_def; + ar71xx_cpu_ops = &ar91xx_chip_def; switch (minor) { case AR91XX_REV_ID_MINOR_AR9130: ar71xx_soc = AR71XX_SOC_AR9130; |