ar71xx: show the SoC type earlier
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 9 Apr 2011 18:47:50 +0000 (18:47 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 9 Apr 2011 18:47:50 +0000 (18:47 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26560 3c298f89-4303-0410-b956-a3cf2f4a3e73

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

index 3a73229..28dc1e5 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);
This page took 0.029206 seconds and 4 git commands to generate.