From: Kartik Kulkarni <kartik.koolks@gmail.com>
To: Lars-Peter Clausen <lars@metafoo.de>,
Michael Hennerich <Michael.Hennerich@analog.com>,
Stefan Popa <stefan.popa@analog.com>,
Jonathan Cameron <jic23@kernel.org>,
Hartmut Knaack <knaack.h@gmx.de>,
Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-iio@vger.kernel.org, devel@driverdev.osuosl.org,
linux-kernel@vger.kernel.org, kernel-usp@googlegroups.com,
Kartik Kulkarni <kartik.koolks@gmail.com>,
Matheus Tavares <matheus.bernardino@usp.br>
Subject: [PATCH] staging:iio:adc:ad7280a: add of_match_table entry
Date: Fri, 26 Jul 2019 01:38:17 +0530 [thread overview]
Message-ID: <20190725200817.31277-1-kartik.koolks@gmail.com> (raw)
Add the of_device_id struct and the respective
of_match_device entry to complete device tree support.
Signed-off-by: Kartik Kulkarni <kartik.koolks@gmail.com>
Reviewed-by: Matheus Tavares <matheus.bernardino@usp.br>
---
drivers/staging/iio/adc/ad7280a.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c
index 19a5f244dcae..ded0ba093a28 100644
--- a/drivers/staging/iio/adc/ad7280a.c
+++ b/drivers/staging/iio/adc/ad7280a.c
@@ -1027,9 +1027,16 @@ static const struct spi_device_id ad7280_id[] = {
};
MODULE_DEVICE_TABLE(spi, ad7280_id);
+static const struct of_device_id ad7280_of_match[] = {
+ { .compatible = "adi,ad7280a", },
+ { }
+};
+MODULE_DEVICE_TABLE(of, ad7280_of_match);
+
static struct spi_driver ad7280_driver = {
.driver = {
- .name = "ad7280",
+ .name = "ad7280a",
+ .of_match_table = ad7280_of_match,
},
.probe = ad7280_probe,
.id_table = ad7280_id,
--
2.20.1
next reply other threads:[~2019-07-25 20:08 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-25 20:08 Kartik Kulkarni [this message]
2019-07-26 5:30 ` [PATCH] staging:iio:adc:ad7280a: add of_match_table entry Ardelean, Alexandru
2019-07-26 17:59 ` Matheus Tavares Bernardino
2019-07-27 13:47 ` Jonathan Cameron
-- strict thread matches above, loose matches on Subject: below --
2019-07-25 20:06 Kartik Kulkarni
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=20190725200817.31277-1-kartik.koolks@gmail.com \
--to=kartik.koolks@gmail.com \
--cc=Michael.Hennerich@analog.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=jic23@kernel.org \
--cc=kernel-usp@googlegroups.com \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=matheus.bernardino@usp.br \
--cc=pmeerw@pmeerw.net \
--cc=stefan.popa@analog.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).