diff options
author | Corey Minyard <cminyard@mvista.com> | 2016-01-19 15:51:53 -0500 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2016-03-18 08:01:23 -0400 |
commit | f813655a36830c54111763ba1acdbb0fe35813d9 (patch) | |
tree | a223e36ed0c20066bc5fb7c195921d1493ac7afe | |
parent | 21c8f9154d9b3d2d84b619c2afdb6965f9d57975 (diff) |
ipmi_si: Fix module parameter doc names
Several were tryacpi instead of their actual values.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
-rw-r--r-- | drivers/char/ipmi/ipmi_si_intf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index 7fddd8696211..488d65ef1e72 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -1363,12 +1363,12 @@ MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the" | |||
1363 | " default scan of the interfaces identified via DMI"); | 1363 | " default scan of the interfaces identified via DMI"); |
1364 | #endif | 1364 | #endif |
1365 | module_param_named(tryplatform, si_tryplatform, bool, 0); | 1365 | module_param_named(tryplatform, si_tryplatform, bool, 0); |
1366 | MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the" | 1366 | MODULE_PARM_DESC(tryplatform, "Setting this to zero will disable the" |
1367 | " default scan of the interfaces identified via platform" | 1367 | " default scan of the interfaces identified via platform" |
1368 | " interfaces like openfirmware"); | 1368 | " interfaces like openfirmware"); |
1369 | #ifdef CONFIG_PCI | 1369 | #ifdef CONFIG_PCI |
1370 | module_param_named(trypci, si_trypci, bool, 0); | 1370 | module_param_named(trypci, si_trypci, bool, 0); |
1371 | MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the" | 1371 | MODULE_PARM_DESC(trypci, "Setting this to zero will disable the" |
1372 | " default scan of the interfaces identified via pci"); | 1372 | " default scan of the interfaces identified via pci"); |
1373 | #endif | 1373 | #endif |
1374 | module_param_named(trydefaults, si_trydefaults, bool, 0); | 1374 | module_param_named(trydefaults, si_trydefaults, bool, 0); |