1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-02 17:30:43 +03:00

ar71xx: export SoC revision

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27079 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2011-06-01 13:12:24 +00:00
parent bd215a1b57
commit 9657aff1ae
2 changed files with 6 additions and 0 deletions

View File

@ -44,6 +44,9 @@ EXPORT_SYMBOL_GPL(ar71xx_ref_freq);
enum ar71xx_soc_type ar71xx_soc;
EXPORT_SYMBOL_GPL(ar71xx_soc);
u32 ar71xx_soc_rev;
EXPORT_SYMBOL_GPL(ar71xx_soc_rev);
static char ar71xx_sys_type[AR71XX_SYS_TYPE_LEN];
static void ar71xx_restart(char *command)
@ -171,6 +174,8 @@ static void __init ar71xx_detect_sys_type(void)
panic("ar71xx: unknown chip id:0x%08x\n", id);
}
ar71xx_soc_rev = rev;
sprintf(ar71xx_sys_type, "Atheros AR%s rev %u", chip, rev);
pr_info("SoC: %s\n", ar71xx_sys_type);
}

View File

@ -138,6 +138,7 @@ enum ar71xx_soc_type {
AR71XX_SOC_AR9342,
AR71XX_SOC_AR9344,
};
extern u32 ar71xx_soc_rev;
extern enum ar71xx_soc_type ar71xx_soc;