ar71xx: show the SoC type earlier
authorGabor Juhos <juhosg@openwrt.org>
Sat, 9 Apr 2011 18:47:50 +0000 (18:47 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Sat, 9 Apr 2011 18:47:50 +0000 (18:47 +0000)
SVN-Revision: 26560

target/linux/ar71xx/files/arch/mips/ar71xx/setup.c

index 3a73229d9b153ec6c1e043dd1b8bb59b85fdbe82..28dc1e593bf27b4d773d7cb7662664f18a4a5717 100644 (file)
@@ -169,6 +169,7 @@ static void __init ar71xx_detect_sys_type(void)
        }
 
        sprintf(ar71xx_sys_type, "Atheros AR%s rev %u", chip, rev);
+       pr_info("SoC: %s\n", ar71xx_sys_type);
 }
 
 static void __init ar934x_detect_sys_frequency(void)
@@ -335,9 +336,7 @@ void __init plat_mem_setup(void)
        ar71xx_detect_sys_type();
        detect_sys_frequency();
 
-       printk(KERN_INFO
-               "%s, CPU:%u.%03u MHz, AHB:%u.%03u MHz, DDR:%u.%03u MHz\n",
-               ar71xx_sys_type,
+       pr_info("Clocks: CPU:%u.%03u MHz, AHB:%u.%03u MHz, DDR:%u.%03u MHz\n",
                ar71xx_cpu_freq / 1000000, (ar71xx_cpu_freq / 1000) % 1000,
                ar71xx_ahb_freq / 1000000, (ar71xx_ahb_freq / 1000) % 1000,
                ar71xx_ddr_freq / 1000000, (ar71xx_ddr_freq / 1000) % 1000);