* [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups
@ 2024-09-03 21:52 Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 1/4] dt-bindings: trivial-devices: Drop incorrect and duplicate at24 compatibles Rob Herring (Arm)
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Rob Herring (Arm) @ 2024-09-03 21:52 UTC (permalink / raw)
To: Krzysztof Kozlowski, Conor Dooley; +Cc: devicetree, linux-kernel
This small series drops some duplicate compatibles and fixes an
incorrect vendor prefix.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
Rob Herring (Arm) (4):
dt-bindings: trivial-devices: Drop incorrect and duplicate at24 compatibles
dt-bindings: trivial-devices: Deprecate "ad,ad7414"
dt-bindings: trivial-devices: Drop duplicate LM75 compatible devices
dt-bindings: trivial-devices: Drop duplicate "maxim,max1237"
Documentation/devicetree/bindings/trivial-devices.yaml | 15 ++-------------
1 file changed, 2 insertions(+), 13 deletions(-)
---
base-commit: 8400291e289ee6b2bf9779ff1c83a291501f017b
change-id: 20240903-dt-trivial-devices-73ebb593f309
Best regards,
--
Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/4] dt-bindings: trivial-devices: Drop incorrect and duplicate at24 compatibles
2024-09-03 21:52 [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring (Arm)
@ 2024-09-03 21:52 ` Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 2/4] dt-bindings: trivial-devices: Deprecate "ad,ad7414" Rob Herring (Arm)
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Rob Herring (Arm) @ 2024-09-03 21:52 UTC (permalink / raw)
To: Krzysztof Kozlowski, Conor Dooley; +Cc: devicetree, linux-kernel
"at,24c08" does not have a correct vendor prefix. The correct compatible
string would be "atmel,24c08" which is already documented in at24.yaml.
It is also unused anywhere, so just drop it.
"st,24c256" is already documented in at24.yaml, so drop it as well.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
Documentation/devicetree/bindings/trivial-devices.yaml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/Documentation/devicetree/bindings/trivial-devices.yaml b/Documentation/devicetree/bindings/trivial-devices.yaml
index 7913ca9b6b54..0cbbc4e0af9c 100644
--- a/Documentation/devicetree/bindings/trivial-devices.yaml
+++ b/Documentation/devicetree/bindings/trivial-devices.yaml
@@ -50,8 +50,6 @@ properties:
- ams,iaq-core
# Temperature monitoring of Astera Labs PT5161L PCIe retimer
- asteralabs,pt5161l
- # i2c serial eeprom (24cxx)
- - at,24c08
# i2c h/w elliptic curve crypto module
- atmel,atecc508a
# ATSHA204 - i2c h/w symmetric crypto module
@@ -364,8 +362,6 @@ properties:
- skyworks,sky81452
# SparkFun Qwiic Joystick (COM-15168) with i2c interface
- sparkfun,qwiic-joystick
- # i2c serial eeprom (24cxx)
- - st,24c256
# Sierra Wireless mangOH Green SPI IoT interface
- swir,mangoh-iotport-spi
# Ambient Light Sensor with SMBUS/Two Wire Serial Interface
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/4] dt-bindings: trivial-devices: Deprecate "ad,ad7414"
2024-09-03 21:52 [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 1/4] dt-bindings: trivial-devices: Drop incorrect and duplicate at24 compatibles Rob Herring (Arm)
@ 2024-09-03 21:52 ` Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 3/4] dt-bindings: trivial-devices: Drop duplicate LM75 compatible devices Rob Herring (Arm)
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Rob Herring (Arm) @ 2024-09-03 21:52 UTC (permalink / raw)
To: Krzysztof Kozlowski, Conor Dooley; +Cc: devicetree, linux-kernel
The correct vendor prefix for Analog Devices is "adi", not "ad". Both
forms are in use. Add the "adi,ad7414" version and deprecate the
"ad,ad7414" version.
Keep them together even though it breaks strict alphabetical ordering.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
Documentation/devicetree/bindings/trivial-devices.yaml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/trivial-devices.yaml b/Documentation/devicetree/bindings/trivial-devices.yaml
index 0cbbc4e0af9c..79c771a4cd9e 100644
--- a/Documentation/devicetree/bindings/trivial-devices.yaml
+++ b/Documentation/devicetree/bindings/trivial-devices.yaml
@@ -33,7 +33,8 @@ properties:
# Acbel fsg032 power supply
- acbel,fsg032
# SMBus/I2C Digital Temperature Sensor in 6-Pin SOT with SMBus Alert and Over Temperature Pin
- - ad,ad7414
+ - ad,ad7414 # Deprecated, use adi,ad7414
+ - adi,ad7414
# ADM9240: Complete System Hardware Monitor for uProcessor-Based Systems
- ad,adm9240
# AD5110 - Nonvolatile Digital Potentiometer
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/4] dt-bindings: trivial-devices: Drop duplicate LM75 compatible devices
2024-09-03 21:52 [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 1/4] dt-bindings: trivial-devices: Drop incorrect and duplicate at24 compatibles Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 2/4] dt-bindings: trivial-devices: Deprecate "ad,ad7414" Rob Herring (Arm)
@ 2024-09-03 21:52 ` Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 4/4] dt-bindings: trivial-devices: Drop duplicate "maxim,max1237" Rob Herring (Arm)
2024-09-10 20:44 ` [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring
4 siblings, 0 replies; 6+ messages in thread
From: Rob Herring (Arm) @ 2024-09-03 21:52 UTC (permalink / raw)
To: Krzysztof Kozlowski, Conor Dooley; +Cc: devicetree, linux-kernel
Drop LM75 compatible devices which are already documented in lm75.yaml.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
Documentation/devicetree/bindings/trivial-devices.yaml | 6 ------
1 file changed, 6 deletions(-)
diff --git a/Documentation/devicetree/bindings/trivial-devices.yaml b/Documentation/devicetree/bindings/trivial-devices.yaml
index 79c771a4cd9e..2c01d8d2a6d3 100644
--- a/Documentation/devicetree/bindings/trivial-devices.yaml
+++ b/Documentation/devicetree/bindings/trivial-devices.yaml
@@ -73,8 +73,6 @@ properties:
- dallas,ds1631
# Total-Elapsed-Time Recorder with Alarm
- dallas,ds1682
- # Tiny Digital Thermometer and Thermostat
- - dallas,ds1775
# CPU Peripheral Monitor
- dallas,ds1780
# CPU Supervisor with Nonvolatile Memory and Programmable I/O
@@ -197,8 +195,6 @@ properties:
- maxim,max5484
# PECI-to-I2C translator for PECI-to-SMBus/I2C protocol conversion
- maxim,max6621
- # 9-Bit/12-Bit Temperature Sensors with I²C-Compatible Serial Interface
- - maxim,max6625
# mCube 3-axis 8-bit digital accelerometer
- mcube,mc3230
# Measurement Specialities I2C temperature and humidity sensor
@@ -394,8 +390,6 @@ properties:
- ti,tmp121
- ti,tmp122
- ti,tmp125
- # Digital Temperature Sensor
- - ti,tmp275
# TI DC-DC converter on PMBus
- ti,tps40400
# TI Dual channel DCAP+ multiphase controller TPS53676 with AVSBus
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 4/4] dt-bindings: trivial-devices: Drop duplicate "maxim,max1237"
2024-09-03 21:52 [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring (Arm)
` (2 preceding siblings ...)
2024-09-03 21:52 ` [PATCH 3/4] dt-bindings: trivial-devices: Drop duplicate LM75 compatible devices Rob Herring (Arm)
@ 2024-09-03 21:52 ` Rob Herring (Arm)
2024-09-10 20:44 ` [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring
4 siblings, 0 replies; 6+ messages in thread
From: Rob Herring (Arm) @ 2024-09-03 21:52 UTC (permalink / raw)
To: Krzysztof Kozlowski, Conor Dooley; +Cc: devicetree, linux-kernel
"maxim,max1237" is already documented in iio/adc/maxim,max1238.yaml, so
drop it from trivial-devices.yaml.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
Documentation/devicetree/bindings/trivial-devices.yaml | 2 --
1 file changed, 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/trivial-devices.yaml b/Documentation/devicetree/bindings/trivial-devices.yaml
index 2c01d8d2a6d3..7cd9d55de8e2 100644
--- a/Documentation/devicetree/bindings/trivial-devices.yaml
+++ b/Documentation/devicetree/bindings/trivial-devices.yaml
@@ -179,8 +179,6 @@ properties:
- maxim,ds1803-100
# 10 kOhm digital potentiometer with I2C interface
- maxim,ds3502
- # Low-Power, 4-/12-Channel, 2-Wire Serial, 12-Bit ADCs
- - maxim,max1237
# Temperature Sensor, I2C interface
- maxim,max1619
# 3-Channel Remote Temperature Sensor
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups
2024-09-03 21:52 [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring (Arm)
` (3 preceding siblings ...)
2024-09-03 21:52 ` [PATCH 4/4] dt-bindings: trivial-devices: Drop duplicate "maxim,max1237" Rob Herring (Arm)
@ 2024-09-10 20:44 ` Rob Herring
4 siblings, 0 replies; 6+ messages in thread
From: Rob Herring @ 2024-09-10 20:44 UTC (permalink / raw)
To: Krzysztof Kozlowski, Conor Dooley; +Cc: devicetree, linux-kernel
On Tue, Sep 03, 2024 at 04:52:04PM -0500, Rob Herring (Arm) wrote:
> This small series drops some duplicate compatibles and fixes an
> incorrect vendor prefix.
>
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> ---
> Rob Herring (Arm) (4):
> dt-bindings: trivial-devices: Drop incorrect and duplicate at24 compatibles
> dt-bindings: trivial-devices: Deprecate "ad,ad7414"
> dt-bindings: trivial-devices: Drop duplicate LM75 compatible devices
> dt-bindings: trivial-devices: Drop duplicate "maxim,max1237"
>
> Documentation/devicetree/bindings/trivial-devices.yaml | 15 ++-------------
> 1 file changed, 2 insertions(+), 13 deletions(-)
Applied.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-09-10 20:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-03 21:52 [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 1/4] dt-bindings: trivial-devices: Drop incorrect and duplicate at24 compatibles Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 2/4] dt-bindings: trivial-devices: Deprecate "ad,ad7414" Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 3/4] dt-bindings: trivial-devices: Drop duplicate LM75 compatible devices Rob Herring (Arm)
2024-09-03 21:52 ` [PATCH 4/4] dt-bindings: trivial-devices: Drop duplicate "maxim,max1237" Rob Herring (Arm)
2024-09-10 20:44 ` [PATCH 0/4] dt-bindings: trivial-devices: Clean-ups Rob Herring
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.