Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dfcccd3a authored by Felipe Balbi's avatar Felipe Balbi Committed by Tony Lindgren
Browse files

arm: omap1: devices: need to return with a value



Get rid of the following warning:

arch/arm/mach-omap1/devices.c: In function 'omap_init_wdt':
arch/arm/mach-omap1/devices.c:298: warning: 'return' with
no value, in function returning non-void

while at that, also change:

platform_device_register();
return 0;

into:

return platform_device_register();

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 1cff502d
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -321,10 +321,9 @@ static struct platform_device omap_wdt_device = {
static int __init omap_init_wdt(void)
{
	if (!cpu_is_omap16xx())
		return;
		return -ENODEV;

	platform_device_register(&omap_wdt_device);
	return 0;
	return platform_device_register(&omap_wdt_device);
}
subsys_initcall(omap_init_wdt);
#endif