diff options
author | 2020-04-24 08:22:16 +0200 | |
---|---|---|
committer | 2020-04-24 08:22:55 +0200 | |
commit | 36dbae9945322e660795e73ffc8ed8ae4f25d13d (patch) | |
tree | 9e444e68380061dccfaa453d1f02cf21c5c986ef /drivers/usb/cdns3/cdns3-ti.c | |
parent | ALSA: oxygen: use true,false for bool variables (diff) | |
parent | ALSA: hda: Refactor Intel NHLT init (diff) | |
download | wireguard-linux-36dbae9945322e660795e73ffc8ed8ae4f25d13d.tar.xz wireguard-linux-36dbae9945322e660795e73ffc8ed8ae4f25d13d.zip |
Merge branch 'topic/nhlt' into for-next
Merge NHLT init cleanup.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'drivers/usb/cdns3/cdns3-ti.c')
-rw-r--r-- | drivers/usb/cdns3/cdns3-ti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/cdns3/cdns3-ti.c b/drivers/usb/cdns3/cdns3-ti.c index c6a79ca15858..5685ba11480b 100644 --- a/drivers/usb/cdns3/cdns3-ti.c +++ b/drivers/usb/cdns3/cdns3-ti.c @@ -52,8 +52,8 @@ enum modestrap_mode { USBSS_MODESTRAP_MODE_NONE, struct cdns_ti { struct device *dev; void __iomem *usbss; - int usb2_only:1; - int vbus_divider:1; + unsigned usb2_only:1; + unsigned vbus_divider:1; struct clk *usb2_refclk; struct clk *lpm_clk; }; |