Skip to content

Commit fd3f6cc

Browse files
committed
Merge tag 'usb-5.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB/PHY fixes from Greg KH: "Here are some small USB and PHY driver fixes for reported issues for 5.6-rc5. Included in here are: - phy driver fixes - new USB quirks - USB cdns3 gadget driver fixes - USB hub core fixes All of these have been in linux-next with no reported issues" * tag 'usb-5.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: usb: dwc3: gadget: Update chain bit correctly when using sg list usb: core: port: do error out if usb_autopm_get_interface() fails usb: core: hub: do error out if usb_autopm_get_interface() fails usb: core: hub: fix unhandled return by employing a void function usb: storage: Add quirk for Samsung Fit flash usb: quirks: add NO_LPM quirk for Logitech Screen Share usb: usb251xb: fix regulator probe and error handling phy: allwinner: Fix GENMASK misuse usb: cdns3: gadget: toggle cycle bit before reset endpoint usb: cdns3: gadget: link trb should point to next request phy: mapphone-mdm6600: Fix timeouts by adding wake-up handling phy: brcm-sata: Correct MDIO operations for 40nm platforms phy: ti: gmii-sel: do not fail in case of gmii phy: ti: gmii-sel: fix set of copy-paste errors phy: core: Fix phy_get() to not return error on link creation failure phy: mapphone-mdm6600: Fix write timeouts with shorter GPIO toggle interval
2 parents 61a0925 + 19f3c1e commit fd3f6cc

File tree

12 files changed

+163
-117
lines changed

12 files changed

+163
-117
lines changed

drivers/phy/allwinner/phy-sun50i-usb3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
#define SUNXI_LOS_BIAS(n) ((n) << 3)
5050
#define SUNXI_LOS_BIAS_MASK GENMASK(5, 3)
5151
#define SUNXI_TXVBOOSTLVL(n) ((n) << 0)
52-
#define SUNXI_TXVBOOSTLVL_MASK GENMASK(0, 2)
52+
#define SUNXI_TXVBOOSTLVL_MASK GENMASK(2, 0)
5353

5454
struct sun50i_usb3_phy {
5555
struct phy *phy;

0 commit comments

Comments
 (0)