mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-14 11:16:58 +02:00
The regulator extras should be placed in the USB H1 regulator node, the /regulator-usb-h1-vbus. They are already present there in the upstream DT, so delete this bogus node entirely. Signed-off-by: Marek Vasut <marex@denx.de>
33 lines
447 B
Plaintext
33 lines
447 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+)
|
|
/*
|
|
* Copyright (C) 2020 Harald Seiler <hws@denx.de>
|
|
* Copyright (C) 2022 Philip Oberfichtner <pro@denx.de>
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
eeprom0 = &eeprom0;
|
|
};
|
|
|
|
wdt-reboot {
|
|
compatible = "wdt-reboot";
|
|
wdt = <&wdog1>;
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&fec {
|
|
phy-reset-duration = <1>;
|
|
phy-reset-post-delay = <10>;
|
|
phy-supply = <®_eth_vio>;
|
|
};
|
|
|
|
&i2c3 {
|
|
eeprom0: eeprom@50 {
|
|
};
|
|
};
|
|
|
|
&wdog1 {
|
|
bootph-pre-ram;
|
|
};
|