Skip to content

Commit

Permalink
ARM: LPC32xx: Move common code to common.c
Browse files Browse the repository at this point in the history
This patch moves non-boardspecific LPC32xx code to common.c

Signed-off-by: Roland Stigge <stigge@antcom.de>
  • Loading branch information
Roland Stigge committed Apr 22, 2012
1 parent f5c4227 commit be20dbc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
13 changes: 13 additions & 0 deletions arch/arm/mach-lpc32xx/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,16 @@ void lpc23xx_restart(char mode, const char *cmd)
while (1)
;
}

static int __init lpc32xx_display_uid(void)
{
u32 uid[4];

lpc32xx_get_uid(uid);

printk(KERN_INFO "LPC32XX unique ID: %08x%08x%08x%08x\n",
uid[3], uid[2], uid[1], uid[0]);

return 1;
}
arch_initcall(lpc32xx_display_uid);
13 changes: 0 additions & 13 deletions arch/arm/mach-lpc32xx/phy3250.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,19 +310,6 @@ static void __init lpc3250_machine_init(void)
SPI0_CS_GPIO);
}

static int __init lpc32xx_display_uid(void)
{
u32 uid[4];

lpc32xx_get_uid(uid);

printk(KERN_INFO "LPC32XX unique ID: %08x%08x%08x%08x\n",
uid[3], uid[2], uid[1], uid[0]);

return 1;
}
arch_initcall(lpc32xx_display_uid);

static char const *lpc32xx_dt_compat[] __initdata = {
"nxp,lpc3220",
"nxp,lpc3230",
Expand Down

0 comments on commit be20dbc

Please sign in to comment.