Commit 36a0a3cd authored by Thomas Bogendoerfer's avatar Thomas Bogendoerfer Committed by Ralf Baechle

[MIPS] IP32: Use common SGI button driver

Use the Indy/O2 button driver.
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 5a334fa9
...@@ -85,18 +85,7 @@ device_initcall(sgio2audio_devinit); ...@@ -85,18 +85,7 @@ device_initcall(sgio2audio_devinit);
static __init int sgio2btns_devinit(void) static __init int sgio2btns_devinit(void)
{ {
struct platform_device *pd; return IS_ERR(platform_device_register_simple("sgibtns", -1, NULL, 0));
int ret;
pd = platform_device_alloc("sgio2btns", -1);
if (!pd)
return -ENOMEM;
ret = platform_device_add(pd);
if (ret)
platform_device_put(pd);
return ret;
} }
device_initcall(sgio2btns_devinit); device_initcall(sgio2btns_devinit);
......
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