Commit 70d8b9e5 authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

usb: cdns3: make signed 1 bit bitfields unsigned

The signed 1 bit bitfields should be unsigned, so make them unsigned.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarPeter Chen <peter.chen@nxp.com>
Link: https://lore.kernel.org/r/20200325125041.94769-1-colin.king@canonical.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ad2d7012
...@@ -52,8 +52,8 @@ enum modestrap_mode { USBSS_MODESTRAP_MODE_NONE, ...@@ -52,8 +52,8 @@ enum modestrap_mode { USBSS_MODESTRAP_MODE_NONE,
struct cdns_ti { struct cdns_ti {
struct device *dev; struct device *dev;
void __iomem *usbss; void __iomem *usbss;
int usb2_only:1; unsigned usb2_only:1;
int vbus_divider:1; unsigned vbus_divider:1;
struct clk *usb2_refclk; struct clk *usb2_refclk;
struct clk *lpm_clk; struct clk *lpm_clk;
}; };
......
...@@ -1199,7 +1199,7 @@ struct cdns3_aligned_buf { ...@@ -1199,7 +1199,7 @@ struct cdns3_aligned_buf {
void *buf; void *buf;
dma_addr_t dma; dma_addr_t dma;
u32 size; u32 size;
int in_use:1; unsigned in_use:1;
struct list_head list; struct list_head list;
}; };
...@@ -1308,8 +1308,8 @@ struct cdns3_device { ...@@ -1308,8 +1308,8 @@ struct cdns3_device {
unsigned u2_allowed:1; unsigned u2_allowed:1;
unsigned is_selfpowered:1; unsigned is_selfpowered:1;
unsigned setup_pending:1; unsigned setup_pending:1;
int hw_configured_flag:1; unsigned hw_configured_flag:1;
int wake_up_flag:1; unsigned wake_up_flag:1;
unsigned status_completion_no_call:1; unsigned status_completion_no_call:1;
unsigned using_streams:1; unsigned using_streams:1;
int out_mem_is_allocated; int out_mem_is_allocated;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment