aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_it821x.c
diff options
context:
space:
mode:
authorStas Sergeev <stsp@aknet.ru>2007-06-20 14:42:13 -0400
committerJeff Garzik <jeff@garzik.org>2007-06-20 19:56:21 -0400
commit5fe675e2b3e41349deb0c81667065b9cb229ea1d (patch)
treee6f797e4fa367733d1c6d37667961be5e17ccce8 /drivers/ata/pata_it821x.c
parenta3d2cc5e742f82a87fdf9e2b730f41ff381c0a73 (diff)
fix module_param mistake in it821x
The attached patch fixes a trivial mistake in a MODULE_PARAM_DESC of pata_it821x driver. The parameter name in MODULE_PARAM_DESC should match the one in module_param_named. Signed-off-by: Stas Sergeev <stsp@aknet.ru> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_it821x.c')
-rw-r--r--drivers/ata/pata_it821x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_it821x.c b/drivers/ata/pata_it821x.c
index 525c9c142891..dab4e7cf8cda 100644
--- a/drivers/ata/pata_it821x.c
+++ b/drivers/ata/pata_it821x.c
@@ -794,7 +794,7 @@ MODULE_VERSION(DRV_VERSION);
794 794
795 795
796module_param_named(noraid, it8212_noraid, int, S_IRUGO); 796module_param_named(noraid, it8212_noraid, int, S_IRUGO);
797MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode"); 797MODULE_PARM_DESC(noraid, "Force card into bypass mode");
798 798
799module_init(it821x_init); 799module_init(it821x_init);
800module_exit(it821x_exit); 800module_exit(it821x_exit);