aboutsummaryrefslogtreecommitdiff
path: root/arch/mips
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-12-27 15:38:25 +0100
committerWim Van Sebroeck <wim@iguana.be>2013-03-01 12:22:29 +0100
commit0f2ad9ed7c6fecb008372e8a709595a2a21059aa (patch)
tree72042d4dd40ca8b85d7b8072b2482f0f974b8391 /arch/mips
parent5071a88475b758bf60191e53606463fe7290c71e (diff)
MIPS: ath79: use dynamically allocated watchdog device
Remove the static watchdog device variable and use the 'platform_device_register_simple' helper to allocate and register the device in one step. This allows us to save a few bytes in the kernel image. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/ath79/dev-common.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/mips/ath79/dev-common.c b/arch/mips/ath79/dev-common.c
index 45efc63b08b..2093b1b2a1d 100644
--- a/arch/mips/ath79/dev-common.c
+++ b/arch/mips/ath79/dev-common.c
@@ -101,12 +101,7 @@ void __init ath79_register_uart(void)
}
}
-static struct platform_device ath79_wdt_device = {
- .name = "ath79-wdt",
- .id = -1,
-};
-
void __init ath79_register_wdt(void)
{
- platform_device_register(&ath79_wdt_device);
+ platform_device_register_simple("ath79-wdt", -1, NULL, 0);
}