mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-02 20:54:40 +02:00
[adm8668] remove frequency from /proc/cpuinfo
This is not the place to expose it and duplicates code reading the system frequency. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34551 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
a2565ae2b4
commit
3ac5bd0aec
@ -36,16 +36,14 @@ void __init plat_mem_setup(void)
|
|||||||
const char *get_system_type(void)
|
const char *get_system_type(void)
|
||||||
{
|
{
|
||||||
unsigned long chipid = ADM8668_CONFIG_REG(ADM8668_CR0);
|
unsigned long chipid = ADM8668_CONFIG_REG(ADM8668_CR0);
|
||||||
int adj = (ADM8668_CONFIG_REG(ADM8668_CR3) >> 11) & 0xf;
|
int product, revision;
|
||||||
int product, revision, mhz;
|
|
||||||
static char ret[32];
|
static char ret[32];
|
||||||
|
|
||||||
product = chipid >> 16;
|
product = chipid >> 16;
|
||||||
revision = chipid & 0xffff;
|
revision = chipid & 0xffff;
|
||||||
mhz = (SYS_CLOCK/1000000) + (adj * 5);
|
|
||||||
|
|
||||||
/* i getting fancy :\ */
|
/* i getting fancy :\ */
|
||||||
snprintf(ret, sizeof(ret), "ADM%xr%x %dMHz", product, revision, mhz);
|
snprintf(ret, sizeof(ret), "ADM%xr%x", product, revision);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user