diff options
author | Gabor Juhos | 2012-12-27 15:38:25 +0100 |
---|---|---|
committer | Wim Van Sebroeck | 2013-03-01 12:22:29 +0100 |
commit | 0f2ad9ed7c6fecb008372e8a709595a2a21059aa (patch) | |
tree | 72042d4dd40ca8b85d7b8072b2482f0f974b8391 | |
parent | 5071a88475b758bf60191e53606463fe7290c71e (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>
-rw-r--r-- | arch/mips/ath79/dev-common.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/mips/ath79/dev-common.c b/arch/mips/ath79/dev-common.c index 45efc63b08b6..2093b1b2a1d1 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); } |