All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Paweł Owoc" <frut3k7@gmail.com>
To: Mark Brown <broonie@kernel.org>
Cc: "Robert Marko" <robimarko@gmail.com>,
	"Paweł Owoc" <frut3k7@gmail.com>,
	"Rob Herring" <robh+dt@kernel.org>,
	"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	"Guenter Roeck" <linux@roeck-us.net>,
	"Jonathan Cameron" <Jonathan.Cameron@huawei.com>,
	"Patrick Rudolph" <patrick.rudolph@9elements.com>,
	"Peter Yin" <peteryin.openbmc@gmail.com>,
	"Marek Vasut" <marex@denx.de>,
	"Alexander Stein" <alexander.stein@ew.tq-group.com>,
	"Lukas Wunner" <lukas@wunner.de>,
	"Bjorn Helgaas" <bhelgaas@google.com>,
	"Andre Werner" <andre.werner@systec-electronic.com>,
	"Lakshmi Yadlapati" <lakshmiy@us.ibm.com>,
	"Fabio Estevam" <festevam@denx.de>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-spi@vger.kernel.org
Subject: [PATCH v2 1/2] spi: spidev: Add Qualcomm qca4024 device compatible
Date: Wed,  7 Feb 2024 23:45:22 +0100	[thread overview]
Message-ID: <20240207224546.44030-1-frut3k7@gmail.com> (raw)
In-Reply-To: <ZcH9u7Vo2sFERIHJ@finisterre.sirena.org.uk>

Add compatible string for Qualcomm QCA4024 device.

Signed-off-by: Paweł Owoc <frut3k7@gmail.com>
---
 drivers/spi/spidev.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
index 655f2c959cd4..0126a457a38e 100644
--- a/drivers/spi/spidev.c
+++ b/drivers/spi/spidev.c
@@ -710,6 +710,7 @@ static const struct spi_device_id spidev_spi_ids[] = {
 	{ .name = "spi-authenta" },
 	{ .name = "em3581" },
 	{ .name = "si3210" },
+	{ .name = "qca4024" },
 	{},
 };
 MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
@@ -734,6 +735,7 @@ static const struct of_device_id spidev_dt_ids[] = {
 	{ .compatible = "lwn,bk4", .data = &spidev_of_check },
 	{ .compatible = "menlo,m53cpld", .data = &spidev_of_check },
 	{ .compatible = "micron,spi-authenta", .data = &spidev_of_check },
+	{ .compatible = "qca,qca4024", .data = &spidev_of_check },
 	{ .compatible = "rohm,dh2228fv", .data = &spidev_of_check },
 	{ .compatible = "semtech,sx1301", .data = &spidev_of_check },
 	{ .compatible = "silabs,em3581", .data = &spidev_of_check },
-- 
2.43.0


  parent reply	other threads:[~2024-02-07 22:46 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-05 19:18 [PATCH 1/2] spi: spidev: Add Qualcomm spidev device compatible Paweł Owoc
2024-02-06  9:36 ` Mark Brown
     [not found]   ` <CAKEyCaB2Cw0Ey73je96xDgofuXDnsC4DgeS9=HkOM6Kufrwbaw@mail.gmail.com>
2024-02-06 13:11     ` Mark Brown
2024-02-06 13:57       ` frut3k7
2024-02-06 14:09         ` Mark Brown
2024-02-06 16:48           ` frut3k7
2024-02-07 10:05             ` Mark Brown
2024-02-06 13:16   ` frut3k7
2024-02-07 22:45   ` Paweł Owoc [this message]
2024-02-07 22:45     ` [PATCH v2 2/2] dt-bindings: trivial-devices: Add qca,qca4024 Paweł Owoc
2024-02-08  7:32       ` Krzysztof Kozlowski
2024-02-15 22:01         ` frut3k7
2024-02-16  7:19           ` Krzysztof Kozlowski
2024-02-16 13:39             ` Paweł Owoc
2024-02-16 14:47               ` Krzysztof Kozlowski
2024-02-17  8:12                 ` Krzysztof Kozlowski
2024-02-17 10:29                   ` Paweł Owoc
2024-02-17 10:31                     ` Krzysztof Kozlowski
2024-02-17 10:55                       ` Paweł Owoc
2024-02-17 13:44                         ` Krzysztof Kozlowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240207224546.44030-1-frut3k7@gmail.com \
    --to=frut3k7@gmail.com \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=alexander.stein@ew.tq-group.com \
    --cc=andre.werner@systec-electronic.com \
    --cc=bhelgaas@google.com \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@denx.de \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lakshmiy@us.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-spi@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=lukas@wunner.de \
    --cc=marex@denx.de \
    --cc=patrick.rudolph@9elements.com \
    --cc=peteryin.openbmc@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=robimarko@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.