mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-23 17:47:28 +08:00

These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
27 lines
927 B
Diff
27 lines
927 B
Diff
From 8cef47999c461a08a52400e9255a94a5f68a6b85 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Thu, 28 Mar 2024 16:16:37 +0000
|
|
Subject: [PATCH] Revert "usb: phy: generic: Get the vbus supply"
|
|
|
|
This reverts commit 03e607cbb2931374db1825f371e9c7f28526d3f4.
|
|
---
|
|
drivers/usb/phy/phy-generic.c | 7 -------
|
|
1 file changed, 7 deletions(-)
|
|
|
|
--- a/drivers/usb/phy/phy-generic.c
|
|
+++ b/drivers/usb/phy/phy-generic.c
|
|
@@ -256,13 +256,6 @@ int usb_phy_gen_create_phy(struct device
|
|
return dev_err_probe(dev, PTR_ERR(nop->vcc),
|
|
"could not get vcc regulator\n");
|
|
|
|
- nop->vbus_draw = devm_regulator_get_exclusive(dev, "vbus");
|
|
- if (PTR_ERR(nop->vbus_draw) == -ENODEV)
|
|
- nop->vbus_draw = NULL;
|
|
- if (IS_ERR(nop->vbus_draw))
|
|
- return dev_err_probe(dev, PTR_ERR(nop->vbus_draw),
|
|
- "could not get vbus regulator\n");
|
|
-
|
|
nop->dev = dev;
|
|
nop->phy.dev = nop->dev;
|
|
nop->phy.label = "nop-xceiv";
|