diff options
Diffstat (limited to 'sound/sparc/cs4231.c')
-rw-r--r-- | sound/sparc/cs4231.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/sparc/cs4231.c b/sound/sparc/cs4231.c index 0e618f82808c..f2eabd3f22fd 100644 --- a/sound/sparc/cs4231.c +++ b/sound/sparc/cs4231.c | |||
@@ -40,7 +40,7 @@ | |||
40 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ | 40 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
41 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ | 41 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
42 | /* Enable this card */ | 42 | /* Enable this card */ |
43 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; | 43 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; |
44 | 44 | ||
45 | module_param_array(index, int, NULL, 0444); | 45 | module_param_array(index, int, NULL, 0444); |
46 | MODULE_PARM_DESC(index, "Index value for Sun CS4231 soundcard."); | 46 | MODULE_PARM_DESC(index, "Index value for Sun CS4231 soundcard."); |
@@ -2118,15 +2118,4 @@ static struct platform_driver cs4231_driver = { | |||
2118 | .remove = __devexit_p(cs4231_remove), | 2118 | .remove = __devexit_p(cs4231_remove), |
2119 | }; | 2119 | }; |
2120 | 2120 | ||
2121 | static int __init cs4231_init(void) | 2121 | module_platform_driver(cs4231_driver); |
2122 | { | ||
2123 | return platform_driver_register(&cs4231_driver); | ||
2124 | } | ||
2125 | |||
2126 | static void __exit cs4231_exit(void) | ||
2127 | { | ||
2128 | platform_driver_unregister(&cs4231_driver); | ||
2129 | } | ||
2130 | |||
2131 | module_init(cs4231_init); | ||
2132 | module_exit(cs4231_exit); | ||