mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 09:12:39 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
27 lines
864 B
Diff
27 lines
864 B
Diff
From 406e7dc82be6ce1b81c88b418640daeef6c2be42 Mon Sep 17 00:00:00 2001
|
|
From: Dom Cobley <popcornmix@gmail.com>
|
|
Date: Mon, 23 May 2022 16:56:44 +0100
|
|
Subject: [PATCH] Revert "usb: phy: generic: Get the vbus supply"
|
|
|
|
This reverts commit c0ea202fbc855d60bc4a0603ca52a9e80654b327.
|
|
---
|
|
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
|
|
@@ -265,13 +265,6 @@ int usb_phy_gen_create_phy(struct device
|
|
return -EPROBE_DEFER;
|
|
}
|
|
|
|
- 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";
|