File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ enum modestrap_mode { USBSS_MODESTRAP_MODE_NONE,
52
52
struct cdns_ti {
53
53
struct device * dev ;
54
54
void __iomem * usbss ;
55
- int usb2_only :1 ;
56
- int vbus_divider :1 ;
55
+ unsigned usb2_only :1 ;
56
+ unsigned vbus_divider :1 ;
57
57
struct clk * usb2_refclk ;
58
58
struct clk * lpm_clk ;
59
59
};
Original file line number Diff line number Diff line change @@ -1199,7 +1199,7 @@ struct cdns3_aligned_buf {
1199
1199
void * buf ;
1200
1200
dma_addr_t dma ;
1201
1201
u32 size ;
1202
- int in_use :1 ;
1202
+ unsigned in_use :1 ;
1203
1203
struct list_head list ;
1204
1204
};
1205
1205
@@ -1308,8 +1308,8 @@ struct cdns3_device {
1308
1308
unsigned u2_allowed :1 ;
1309
1309
unsigned is_selfpowered :1 ;
1310
1310
unsigned setup_pending :1 ;
1311
- int hw_configured_flag :1 ;
1312
- int wake_up_flag :1 ;
1311
+ unsigned hw_configured_flag :1 ;
1312
+ unsigned wake_up_flag :1 ;
1313
1313
unsigned status_completion_no_call :1 ;
1314
1314
unsigned using_streams :1 ;
1315
1315
int out_mem_is_allocated ;
You can’t perform that action at this time.
0 commit comments