summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings
diff options
context:
space:
mode:
Diffstat (limited to 'doc/device-tree-bindings')
-rw-r--r--doc/device-tree-bindings/arm/adi/adi,sc5xx.yaml2
-rw-r--r--doc/device-tree-bindings/sysinfo/tq,eeprom-sysinfo.txt36
2 files changed, 1 insertions, 37 deletions
diff --git a/doc/device-tree-bindings/arm/adi/adi,sc5xx.yaml b/doc/device-tree-bindings/arm/adi/adi,sc5xx.yaml
index ae3b5e6092a..df976c7ae73 100644
--- a/doc/device-tree-bindings/arm/adi/adi,sc5xx.yaml
+++ b/doc/device-tree-bindings/arm/adi/adi,sc5xx.yaml
@@ -18,7 +18,7 @@ properties:
oneOf:
- description: SC57X Series Boards
items:
- - const: adi,sc573-ezlite
+ - const: adi,sc573-ezkit
- const: adi,sc57x
- description: SC58X Series Boards
diff --git a/doc/device-tree-bindings/sysinfo/tq,eeprom-sysinfo.txt b/doc/device-tree-bindings/sysinfo/tq,eeprom-sysinfo.txt
deleted file mode 100644
index 678fff0e812..00000000000
--- a/doc/device-tree-bindings/sysinfo/tq,eeprom-sysinfo.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-TQ EEPROM Sysinfo Driver
-------------------------
-
-This binding describes a sysinfo provider which retrieves system
-identification information from an I2C EEPROM device.
-
-Required properties:
-
-- compatible: "tq,eeprom-sysinfo"
-- nvmem-cells: phandle referencing the nvmem cell
-- nvmem-cell-names: string, should be "device_info"
-
-Example:
-
-&i2c1 {
- eeprom@50 {
- compatible = "atmel,24c64";
- reg = <0x50>;
-
- nvmem-layout {
- compatible = "fixed-layout";
- #address-cells = <1>;
- #size-cells = <1>;
-
- module_info: module-info@20 {
- reg = <0x20 0x60>;
- };
- };
- };
-};
-
-sysinfo {
- compatible = "tq,eeprom-sysinfo";
- nvmem-cells = <&module_info>;
- nvmem-cell-names = "device_info";
-};