Message ID | 20250221155644.1168860-1-lukma@denx.de |
---|---|
State | New |
Headers | show |
Series | spi: spidev: Add compatible for LWE's btt device | expand |
Hi Mark, > On Fri, Feb 21, 2025 at 04:56:44PM +0100, Lukasz Majewski wrote: > > The Liebherr's BTT devices are using spidev to communicate via > > SPI to monitoring devices. Extend compatibles to allow proper > > DTS description. > > This is fine but we need a bindings document update too > (trivial-devices.yaml should be fine I think). I've just resend the update for trival-devices.yaml. https://lore.kernel.org/linux-devicetree/20250326140930.2587775-1-lukma@denx.de/T/#u Hopefully you can pull it soon. Best regards, Lukasz Majewski -- DENX Software Engineering GmbH, Managing Director: Erika Unter HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de
On Wed, Mar 26, 2025 at 05:42:28PM +0100, Lukasz Majewski wrote: > > On Fri, Feb 21, 2025 at 04:56:44PM +0100, Lukasz Majewski wrote: > > This is fine but we need a bindings document update too > > (trivial-devices.yaml should be fine I think). > I've just resend the update for trival-devices.yaml. > https://lore.kernel.org/linux-devicetree/20250326140930.2587775-1-lukma@denx.de/T/#u > Hopefully you can pull it soon. I would have expected the two updates to go together...
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index 58ae4304fdab..ceaccc5cf8f5 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -707,6 +707,7 @@ static const struct spi_device_id spidev_spi_ids[] = { { .name = /* dh */ "dhcom-board" }, { .name = /* elgin */ "jg10309-01" }, { .name = /* lineartechnology */ "ltc2488" }, + { .name = /* lwe */ "btt" }, { .name = /* lwn */ "bk4" }, { .name = /* lwn */ "bk4-spi" }, { .name = /* menlo */ "m53cpld" }, @@ -738,6 +739,7 @@ static const struct of_device_id spidev_dt_ids[] = { { .compatible = "dh,dhcom-board", .data = &spidev_of_check }, { .compatible = "elgin,jg10309-01", .data = &spidev_of_check }, { .compatible = "lineartechnology,ltc2488", .data = &spidev_of_check }, + { .compatible = "lwe,btt", .data = &spidev_of_check }, { .compatible = "lwn,bk4", .data = &spidev_of_check }, { .compatible = "lwn,bk4-spi", .data = &spidev_of_check }, { .compatible = "menlo,m53cpld", .data = &spidev_of_check },
The Liebherr's BTT devices are using spidev to communicate via SPI to monitoring devices. Extend compatibles to allow proper DTS description. Signed-off-by: Lukasz Majewski <lukma@denx.de> --- drivers/spi/spidev.c | 2 ++ 1 file changed, 2 insertions(+)