aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/gadget/net2280.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/gadget/net2280.c')
-rw-r--r--drivers/usb/gadget/net2280.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/gadget/net2280.c b/drivers/usb/gadget/net2280.c
index cf1f36454d08..cdedd1336745 100644
--- a/drivers/usb/gadget/net2280.c
+++ b/drivers/usb/gadget/net2280.c
@@ -90,8 +90,8 @@ static const char *const ep_name [] = {
90 * Some gadget drivers work better with the dma support here than others. 90 * Some gadget drivers work better with the dma support here than others.
91 * These two parameters let you use PIO or more aggressive DMA. 91 * These two parameters let you use PIO or more aggressive DMA.
92 */ 92 */
93static int use_dma = 1; 93static bool use_dma = 1;
94static int use_dma_chaining = 0; 94static bool use_dma_chaining = 0;
95 95
96/* "modprobe net2280 use_dma=n" etc */ 96/* "modprobe net2280 use_dma=n" etc */
97module_param (use_dma, bool, S_IRUGO); 97module_param (use_dma, bool, S_IRUGO);
@@ -112,7 +112,7 @@ module_param (fifo_mode, ushort, 0644);
112 * USB suspend requests will be ignored. This is acceptable for 112 * USB suspend requests will be ignored. This is acceptable for
113 * self-powered devices 113 * self-powered devices
114 */ 114 */
115static int enable_suspend = 0; 115static bool enable_suspend = 0;
116 116
117/* "modprobe net2280 enable_suspend=1" etc */ 117/* "modprobe net2280 enable_suspend=1" etc */
118module_param (enable_suspend, bool, S_IRUGO); 118module_param (enable_suspend, bool, S_IRUGO);