diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-08-10 19:42:54 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-11-02 11:00:03 (GMT) |
commit | 6c1e7a5ad9ac40c9bf45381409dc16207b6ffceb (patch) | |
tree | 1948ec1870c4ff8b97bb65fa9c18439c6727a408 /arch/mips/bcm63xx/dev-uart.c | |
parent | e85843a1e1974167878e6124a91a06036c3b849d (diff) | |
download | linux-6c1e7a5ad9ac40c9bf45381409dc16207b6ffceb.tar.xz |
MIPS: BCM63xx: Make bcm63xx_uart_register an initfunc
This patch removes the calls to bcm63xx_uart_register in board_bcm963xx.c
and make bcm63xx_uart_register an initfunc. Allows us to remove
bcm63xx_dev_uart.h which was there to make checkpatch.pl happy.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/bcm63xx/dev-uart.c')
-rw-r--r-- | arch/mips/bcm63xx/dev-uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm63xx/dev-uart.c b/arch/mips/bcm63xx/dev-uart.c index 5f3d89c..b051946 100644 --- a/arch/mips/bcm63xx/dev-uart.c +++ b/arch/mips/bcm63xx/dev-uart.c @@ -10,7 +10,6 @@ #include <linux/kernel.h> #include <linux/platform_device.h> #include <bcm63xx_cpu.h> -#include <bcm63xx_dev_uart.h> static struct resource uart_resources[] = { { @@ -39,3 +38,4 @@ int __init bcm63xx_uart_register(void) uart_resources[1].start = bcm63xx_get_irq_number(IRQ_UART0); return platform_device_register(&bcm63xx_uart_device); } +arch_initcall(bcm63xx_uart_register); |