From: "Vishwanathrao Badarkhe, Manish" <manishv.b@ti.com>
To: <devicetree-discuss@lists.ozlabs.org>,
<linux-doc@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<davinci-linux-open-source@linux.davincidsp.com>
Cc: <anilkumar@ti.com>, <tony@atomide.com>, <hs@denx.de>,
<broonie@opensource.wolfsonmicro.com>, <sameo@linux.intel.com>,
<khilman@deeprootsystems.com>, <nsekhar@ti.com>,
<linus.walleij@linaro.org>, <linux@arm.linux.org.uk>,
<rob@landley.net>, <rob.herring@calxeda.com>,
<grant.likely@secretlab.ca>, <manishv.b@ti.com>
Subject: [PATCH V2 4/6] mfd: tps6507x: add device-tree support.
Date: Tue, 29 Jan 2013 13:08:52 +0530 [thread overview]
Message-ID: <1359445134-13323-5-git-send-email-manishv.b@ti.com> (raw)
In-Reply-To: <1359445134-13323-1-git-send-email-manishv.b@ti.com>
Add device tree based initialization support for TI's
tps6507x mfd device.
Signed-off-by: Vishwanathrao Badarkhe, Manish <manishv.b@ti.com>
---
Changes since V1:
- updated subject line for commit.
:100644 100644 409afa2... 5ad4b77... M drivers/mfd/tps6507x.c
drivers/mfd/tps6507x.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/drivers/mfd/tps6507x.c b/drivers/mfd/tps6507x.c
index 409afa2..5ad4b77 100644
--- a/drivers/mfd/tps6507x.c
+++ b/drivers/mfd/tps6507x.c
@@ -19,6 +19,7 @@
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/i2c.h>
+#include <linux/of_device.h>
#include <linux/mfd/core.h>
#include <linux/mfd/tps6507x.h>
@@ -116,11 +117,19 @@ static const struct i2c_device_id tps6507x_i2c_id[] = {
};
MODULE_DEVICE_TABLE(i2c, tps6507x_i2c_id);
+#ifdef CONFIG_OF
+static struct of_device_id tps6507x_of_match[] = {
+ {.compatible = "ti,tps6507x", },
+ {},
+};
+MODULE_DEVICE_TABLE(of, tps6507x_of_match);
+#endif
static struct i2c_driver tps6507x_i2c_driver = {
.driver = {
.name = "tps6507x",
.owner = THIS_MODULE,
+ .of_match_table = of_match_ptr(tps6507x_of_match),
},
.probe = tps6507x_i2c_probe,
.remove = tps6507x_i2c_remove,
--
1.7.4.1
next prev parent reply other threads:[~2013-01-29 7:39 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-29 7:38 [PATCH V2 0/6] davinci: DT support for i2c0 and tps6507x Vishwanathrao Badarkhe, Manish
2013-01-29 7:38 ` [PATCH V2 1/6] pinctrl: pinctrl-single: use arch_initcall and module_exit Vishwanathrao Badarkhe, Manish
2013-01-29 10:59 ` Linus Walleij
2013-01-29 12:02 ` Vishwanathrao Badarkhe, Manish
2013-02-01 7:05 ` Sekhar Nori
2013-02-01 17:09 ` Tony Lindgren
2013-02-01 17:11 ` Tony Lindgren
2013-02-05 6:36 ` Vishwanathrao Badarkhe, Manish
2013-02-05 11:27 ` Russell King - ARM Linux
2013-02-06 6:04 ` Vishwanathrao Badarkhe, Manish
2013-02-05 13:00 ` Linus Walleij
2013-02-06 4:57 ` Vishwanathrao Badarkhe, Manish
2013-01-29 7:38 ` [PATCH V2 2/6] ARM: davinci: da850: add OF_DEV_AUXDATA entry for I2C0 Vishwanathrao Badarkhe, Manish
2013-01-29 7:38 ` [PATCH V2 3/6] ARM: davinci: da850: add DT node " Vishwanathrao Badarkhe, Manish
2013-02-03 12:49 ` Sekhar Nori
2013-02-04 3:07 ` Vishwanathrao Badarkhe, Manish
2013-01-29 7:38 ` Vishwanathrao Badarkhe, Manish [this message]
2013-02-03 22:31 ` [PATCH V2 4/6] mfd: tps6507x: add device-tree support Samuel Ortiz
2013-01-29 7:38 ` [PATCH V2 5/6] ARM: regulator: add tps6507x device tree data Vishwanathrao Badarkhe, Manish
2013-02-07 10:21 ` Vishwanathrao Badarkhe, Manish
2013-01-29 7:38 ` [PATCH V2 6/6] ARM: davinci: da850: add tps6507x regulator DT data Vishwanathrao Badarkhe, Manish
2013-02-07 10:22 ` Vishwanathrao Badarkhe, Manish
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=1359445134-13323-5-git-send-email-manishv.b@ti.com \
--to=manishv.b@ti.com \
--cc=anilkumar@ti.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=davinci-linux-open-source@linux.davincidsp.com \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=grant.likely@secretlab.ca \
--cc=hs@denx.de \
--cc=khilman@deeprootsystems.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=nsekhar@ti.com \
--cc=rob.herring@calxeda.com \
--cc=rob@landley.net \
--cc=sameo@linux.intel.com \
--cc=tony@atomide.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
all inboxes | Powered by JetHome®