1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/net/wireless/realtek,rtl8188e.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Realtek RTL8188E USB WiFi 8 9maintainers: 10 - J. Neuschäfer <j.ne@posteo.net> 11 12description: 13 Realtek RTL8188E is a family of USB-connected 2.4 GHz WiFi modules. 14 15allOf: 16 - $ref: /schemas/usb/usb-device.yaml# 17 18properties: 19 compatible: 20 const: usbbda,179 # RTL8188ETV 21 22 reg: true 23 24 vdd-supply: 25 description: 26 Regulator for the 3V3 supply. 27 28required: 29 - compatible 30 - reg 31 - vdd-supply 32 33additionalProperties: false 34 35examples: 36 - | 37 #include <dt-bindings/gpio/gpio.h> 38 39 usb { 40 #address-cells = <1>; 41 #size-cells = <0>; 42 43 wifi: wifi@1 { 44 compatible = "usbbda,179"; 45 reg = <1>; 46 vdd-supply = <&vcc3v3>; 47 }; 48 }; 49 50... 51