diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-01-27 19:45:05 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-30 00:17:39 -0500 |
commit | 7b8bc3aad0deabf3bc50cd2fe29bce29be5681fe (patch) | |
tree | 68fdff3102abe07820768927f82964c3722b775d /drivers/usb | |
parent | de9c6307c0cdf24a08facbc808fe3989a145c93a (diff) |
USB: chipidea: ci13xxx_imx: Remove sparse warning
Remove the following sparse warning:
drivers/usb/chipidea/ci13xxx_imx.h:22:25: error: dubious one-bit signed bitfield
drivers/usb/chipidea/ci13xxx_imx.h:22:25: error: dubious one-bit signed bitfield
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/chipidea/ci13xxx_imx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/chipidea/ci13xxx_imx.h b/drivers/usb/chipidea/ci13xxx_imx.h index 2e88accb3d67..9cd2e910b1ca 100644 --- a/drivers/usb/chipidea/ci13xxx_imx.h +++ b/drivers/usb/chipidea/ci13xxx_imx.h | |||
@@ -19,7 +19,7 @@ struct usbmisc_usb_device { | |||
19 | struct device *dev; /* usb controller device */ | 19 | struct device *dev; /* usb controller device */ |
20 | int index; | 20 | int index; |
21 | 21 | ||
22 | int disable_oc:1; /* over current detect disabled */ | 22 | unsigned int disable_oc:1; /* over current detect disabled */ |
23 | }; | 23 | }; |
24 | 24 | ||
25 | int usbmisc_set_ops(const struct usbmisc_ops *ops); | 25 | int usbmisc_set_ops(const struct usbmisc_ops *ops); |