aboutsummaryrefslogtreecommitdiffstats
path: root/sound/sparc/dbri.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/sparc/dbri.c')
-rw-r--r--sound/sparc/dbri.c16
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}}");
80static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 80static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
81static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 81static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
82/* Enable this card */ 82/* Enable this card */
83static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; 83static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
84 84
85module_param_array(index, int, NULL, 0444); 85module_param_array(index, int, NULL, 0444);
86MODULE_PARM_DESC(index, "Index value for Sun DBRI soundcard."); 86MODULE_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. */ 2700module_platform_driver(dbri_sbus_driver);
2701static int __init dbri_init(void)
2702{
2703 return platform_driver_register(&dbri_sbus_driver);
2704}
2705
2706static void __exit dbri_exit(void)
2707{
2708 platform_driver_unregister(&dbri_sbus_driver);
2709}
2710
2711module_init(dbri_init);
2712module_exit(dbri_exit);