Date: Thu, 19 Aug 2010 12:52:49 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r211504 - head/sys/mips/atheros Message-ID: <201008191252.o7JCqnBm004421@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Thu Aug 19 12:52:49 2010 New Revision: 211504 URL: http://svn.freebsd.org/changeset/base/211504 Log: Fix mistaken indenting. Modified: head/sys/mips/atheros/ar71xx_setup.c Modified: head/sys/mips/atheros/ar71xx_setup.c ============================================================================== --- head/sys/mips/atheros/ar71xx_setup.c Thu Aug 19 11:53:55 2010 (r211503) +++ head/sys/mips/atheros/ar71xx_setup.c Thu Aug 19 12:52:49 2010 (r211504) @@ -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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008191252.o7JCqnBm004421>