diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2008-07-04 19:12:13 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 13:44:32 -0400 |
commit | 8fa9cc16f820915fbe8ab6047c420703a87c307e (patch) | |
tree | 2d90fe6408118e8a9716d497d4e5ce952a9f654b /arch/mips/sgi-ip32 | |
parent | 7a2852e49fe2d19296812c0f0f833b0ee3043bbb (diff) |
[MIPS] IP32: Add platform devices for audio and volume button
Create platform devices for audio and volume button driver.
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip32')
-rw-r--r-- | arch/mips/sgi-ip32/ip32-platform.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/arch/mips/sgi-ip32/ip32-platform.c b/arch/mips/sgi-ip32/ip32-platform.c index 89a71f49b692..2ee401ba0b25 100644 --- a/arch/mips/sgi-ip32/ip32-platform.c +++ b/arch/mips/sgi-ip32/ip32-platform.c | |||
@@ -65,6 +65,42 @@ static __init int meth_devinit(void) | |||
65 | 65 | ||
66 | device_initcall(meth_devinit); | 66 | device_initcall(meth_devinit); |
67 | 67 | ||
68 | static __init int sgio2audio_devinit(void) | ||
69 | { | ||
70 | struct platform_device *pd; | ||
71 | int ret; | ||
72 | |||
73 | pd = platform_device_alloc("sgio2audio", -1); | ||
74 | if (!pd) | ||
75 | return -ENOMEM; | ||
76 | |||
77 | ret = platform_device_add(pd); | ||
78 | if (ret) | ||
79 | platform_device_put(pd); | ||
80 | |||
81 | return ret; | ||
82 | } | ||
83 | |||
84 | device_initcall(sgio2audio_devinit); | ||
85 | |||
86 | static __init int sgio2btns_devinit(void) | ||
87 | { | ||
88 | struct platform_device *pd; | ||
89 | int ret; | ||
90 | |||
91 | pd = platform_device_alloc("sgio2btns", -1); | ||
92 | if (!pd) | ||
93 | return -ENOMEM; | ||
94 | |||
95 | ret = platform_device_add(pd); | ||
96 | if (ret) | ||
97 | platform_device_put(pd); | ||
98 | |||
99 | return ret; | ||
100 | } | ||
101 | |||
102 | device_initcall(sgio2btns_devinit); | ||
103 | |||
68 | MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>"); | 104 | MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>"); |
69 | MODULE_LICENSE("GPL"); | 105 | MODULE_LICENSE("GPL"); |
70 | MODULE_DESCRIPTION("8250 UART probe driver for SGI IP32 aka O2"); | 106 | MODULE_DESCRIPTION("8250 UART probe driver for SGI IP32 aka O2"); |