mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
18 lines
362 B
Plaintext
18 lines
362 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||
|
|
||
|
&leds {
|
||
|
usb2 {
|
||
|
label = "green:usb2";
|
||
|
gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
|
||
|
trigger-sources = <&ehci_port2>;
|
||
|
linux,default-trigger = "usbport";
|
||
|
};
|
||
|
|
||
|
usb3 {
|
||
|
label = "green:usb3";
|
||
|
gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
|
||
|
trigger-sources = <&xhci_ehci_port1>;
|
||
|
linux,default-trigger = "usbport";
|
||
|
};
|
||
|
};
|