Linux Audio

Check our new training course

Linux BSP upgrade and security maintenance

Need help to get security updates for your Linux BSP?
Loading...
v5.14.15
 1// SPDX-License-Identifier: GPL-2.0
 2/ {
 3	aliases {
 4		ethernet0 = &ethernet;
 5	};
 6};
 7
 8&usb {
 9	usb1@1 {
10		compatible = "usb424,9512";
11		reg = <1>;
12		#address-cells = <1>;
13		#size-cells = <0>;
14
15		ethernet: usbether@1 {
16			compatible = "usb424,ec00";
17			reg = <1>;
18		};
19	};
20};
v4.10.11
 
 1/ {
 2	aliases {
 3		ethernet = &ethernet;
 4	};
 5};
 6
 7&usb {
 8	usb1@1 {
 9		compatible = "usb424,9512";
10		reg = <1>;
11		#address-cells = <1>;
12		#size-cells = <0>;
13
14		ethernet: usbether@1 {
15			compatible = "usb424,ec00";
16			reg = <1>;
17		};
18	};
19};