diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2008-07-11 17:03:03 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 13:44:37 -0400 |
commit | b03d7b18fd783f39e31560d568e7db954f3080af (patch) | |
tree | 4b3e0afaeab63b704701baec6fbcbd931c30a1b7 /arch/mips/sgi-ip22/ip22-platform.c | |
parent | efff4ae259b8f750ea426d3084007f85c0a15a85 (diff) |
[MIPS] IP22: Add platform device for Indy volume buttons
Create platform device for Indy volume buttons and remove button
handling from ip22-reset.c
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip22/ip22-platform.c')
-rw-r--r-- | arch/mips/sgi-ip22/ip22-platform.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/mips/sgi-ip22/ip22-platform.c b/arch/mips/sgi-ip22/ip22-platform.c index d93d07a8c317..fc6df96305ed 100644 --- a/arch/mips/sgi-ip22/ip22-platform.c +++ b/arch/mips/sgi-ip22/ip22-platform.c | |||
@@ -182,3 +182,14 @@ static int __init sgi_hal2_devinit(void) | |||
182 | } | 182 | } |
183 | 183 | ||
184 | device_initcall(sgi_hal2_devinit); | 184 | device_initcall(sgi_hal2_devinit); |
185 | |||
186 | static int __init sgi_button_devinit(void) | ||
187 | { | ||
188 | if (ip22_is_fullhouse()) | ||
189 | return 0; /* full house has no volume buttons */ | ||
190 | |||
191 | return IS_ERR(platform_device_register_simple("sgiindybtns", | ||
192 | -1, NULL, 0)); | ||
193 | } | ||
194 | |||
195 | device_initcall(sgi_button_devinit); | ||