aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ohci-hcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/ohci-hcd.c')
-rw-r--r--drivers/usb/host/ohci-hcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c
index 5f5a63241436..34b9edd86651 100644
--- a/drivers/usb/host/ohci-hcd.c
+++ b/drivers/usb/host/ohci-hcd.c
@@ -115,13 +115,13 @@ static inline void sb800_prefetch(struct ohci_hcd *ohci, int on)
115 115
116 116
117/* Some boards misreport power switching/overcurrent */ 117/* Some boards misreport power switching/overcurrent */
118static int distrust_firmware = 1; 118static bool distrust_firmware = 1;
119module_param (distrust_firmware, bool, 0); 119module_param (distrust_firmware, bool, 0);
120MODULE_PARM_DESC (distrust_firmware, 120MODULE_PARM_DESC (distrust_firmware,
121 "true to distrust firmware power/overcurrent setup"); 121 "true to distrust firmware power/overcurrent setup");
122 122
123/* Some boards leave IR set wrongly, since they fail BIOS/SMM handshakes */ 123/* Some boards leave IR set wrongly, since they fail BIOS/SMM handshakes */
124static int no_handshake = 0; 124static bool no_handshake = 0;
125module_param (no_handshake, bool, 0); 125module_param (no_handshake, bool, 0);
126MODULE_PARM_DESC (no_handshake, "true (not default) disables BIOS handshake"); 126MODULE_PARM_DESC (no_handshake, "true (not default) disables BIOS handshake");
127 127