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