aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@pobox.com>2004-11-14 12:19:16 -0500
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-11-14 12:19:16 -0500
commitf6e2d606da237a6ff2c27e9ad2eff5d9e8b0c032 (patch)
tree7c64afeef9af1e3bccd4f24839e7df99f4807607 /sound
parent1fc697f99ba3a91cdaa6c989ef3a6c0a7b3d388b (diff)
downloadhistory-f6e2d606da237a6ff2c27e9ad2eff5d9e8b0c032.tar.gz
[sound/oss i810_audio] use module_param()
Also, set MODULE_AUTHOR and correct module name in a macro.
Diffstat (limited to 'sound')
-rw-r--r--sound/oss/i810_audio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/oss/i810_audio.c b/sound/oss/i810_audio.c
index f49a80b8b337a4..fd4d1eae13328f 100644
--- a/sound/oss/i810_audio.c
+++ b/sound/oss/i810_audio.c
@@ -3460,15 +3460,15 @@ static int i810_pm_resume(struct pci_dev *dev)
}
#endif /* CONFIG_PM */
-MODULE_AUTHOR("");
+MODULE_AUTHOR("The Linux kernel team");
MODULE_DESCRIPTION("Intel 810 audio support");
MODULE_LICENSE("GPL");
-MODULE_PARM(ftsodell, "i");
-MODULE_PARM(clocking, "i");
-MODULE_PARM(strict_clocking, "i");
-MODULE_PARM(spdif_locked, "i");
+module_param(ftsodell, int, 0444);
+module_param(clocking, uint, 0444);
+module_param(strict_clocking, int, 0444);
+module_param(spdif_locked, int, 0444);
-#define I810_MODULE_NAME "intel810_audio"
+#define I810_MODULE_NAME "i810_audio"
static struct pci_driver i810_pci_driver = {
.name = I810_MODULE_NAME,