Commit 0f2ad9ed authored by Gabor Juhos's avatar Gabor Juhos Committed by Wim Van Sebroeck

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: default avatarGabor Juhos <juhosg@openwrt.org>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 5071a884
...@@ -101,12 +101,7 @@ void __init ath79_register_uart(void) ...@@ -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) void __init ath79_register_wdt(void)
{ {
platform_device_register(&ath79_wdt_device); platform_device_register_simple("ath79-wdt", -1, NULL, 0);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment