ARM: ux500: rename ux500_map_io

This function is not mapping any I/O other than for probing
the chip ID. Rename it to make the function graspable.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Linus Walleij 2015-05-14 10:37:05 +02:00
parent 6252bd3578
commit 9bac89e069
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ static struct prcmu_pdata db8500_prcmu_pdata = {
static void __init u8500_map_io(void)
{
debug_ll_io_init();
ux500_map_io();
ux500_setup_id();
}
/*

View File

@ -72,7 +72,7 @@ static unsigned int partnumber(unsigned int asicid)
* DB9540 0x413fc090 0xFFFFDBF4 0x009540xx
*/
void __init ux500_map_io(void)
void __init ux500_setup_id(void)
{
unsigned int cpuid = read_cpuid_id();
unsigned int asicid = 0;

View File

@ -18,7 +18,7 @@
void ux500_restart(enum reboot_mode mode, const char *cmd);
void __init ux500_map_io(void);
void __init ux500_setup_id(void);
extern void __init ux500_init_irq(void);