diff options
Diffstat (limited to 'arch/mips/sgi-ip22/ip22-platform.c')
-rw-r--r-- | arch/mips/sgi-ip22/ip22-platform.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/mips/sgi-ip22/ip22-platform.c b/arch/mips/sgi-ip22/ip22-platform.c index 28ffec8e5d1a..fc6df96305ed 100644 --- a/arch/mips/sgi-ip22/ip22-platform.c +++ b/arch/mips/sgi-ip22/ip22-platform.c | |||
@@ -175,3 +175,21 @@ static int __init sgiseeq_devinit(void) | |||
175 | } | 175 | } |
176 | 176 | ||
177 | device_initcall(sgiseeq_devinit); | 177 | device_initcall(sgiseeq_devinit); |
178 | |||
179 | static int __init sgi_hal2_devinit(void) | ||
180 | { | ||
181 | return IS_ERR(platform_device_register_simple("sgihal2", 0, NULL, 0)); | ||
182 | } | ||
183 | |||
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); | ||