diff options
author | Mark Brown <[email protected]> | 2020-04-22 08:51:44 +0100 |
---|---|---|
committer | Mark Brown <[email protected]> | 2020-04-22 08:51:44 +0100 |
commit | 41d91ec3de8a90167159275bde7ed65768723556 (patch) | |
tree | 6b3609b4317591e3f61edd11e230ad5e3289de09 /drivers/usb/cdns3/cdns3-ti.c | |
parent | 1e060a453c8604311fb45ae2f84f67ed673329b4 (diff) | |
parent | ff5d18cb04f4ecccbcf05b7f83ab6df2a0d95c16 (diff) |
Merge tag 'tegra-for-5.7-asoc' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into asoc-5.7
ASoC: tegra: Fixes for v5.7-rc3
This contains a couple of fixes that are needed to properly reconfigure
the audio clocks on older Tegra devices.
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; }; |