diff options
Diffstat (limited to 'sound/sparc/dbri.c')
-rw-r--r-- | sound/sparc/dbri.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sound/sparc/dbri.c b/sound/sparc/dbri.c index 4a4f1d740330..a6b0deb77746 100644 --- a/sound/sparc/dbri.c +++ b/sound/sparc/dbri.c | |||
@@ -80,7 +80,7 @@ MODULE_SUPPORTED_DEVICE("{{Sun,DBRI}}"); | |||
80 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ | 80 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
81 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ | 81 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
82 | /* Enable this card */ | 82 | /* Enable this card */ |
83 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; | 83 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; |
84 | 84 | ||
85 | module_param_array(index, int, NULL, 0444); | 85 | module_param_array(index, int, NULL, 0444); |
86 | MODULE_PARM_DESC(index, "Index value for Sun DBRI soundcard."); | 86 | MODULE_PARM_DESC(index, "Index value for Sun DBRI soundcard."); |
@@ -2697,16 +2697,4 @@ static struct platform_driver dbri_sbus_driver = { | |||
2697 | .remove = __devexit_p(dbri_remove), | 2697 | .remove = __devexit_p(dbri_remove), |
2698 | }; | 2698 | }; |
2699 | 2699 | ||
2700 | /* Probe for the dbri chip and then attach the driver. */ | 2700 | module_platform_driver(dbri_sbus_driver); |
2701 | static int __init dbri_init(void) | ||
2702 | { | ||
2703 | return platform_driver_register(&dbri_sbus_driver); | ||
2704 | } | ||
2705 | |||
2706 | static void __exit dbri_exit(void) | ||
2707 | { | ||
2708 | platform_driver_unregister(&dbri_sbus_driver); | ||
2709 | } | ||
2710 | |||
2711 | module_init(dbri_init); | ||
2712 | module_exit(dbri_exit); | ||