diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2013-04-08 11:06:39 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-05-31 11:24:50 +0200 |
commit | 21a035db897975a5195dfb1525433637f30aeebf (patch) | |
tree | 3bf6d84f0e6b6510720218f2e7db5e79b612d979 /drivers/pinctrl | |
parent | 5a5056cccfb0479f52a0464a6b371b441c84aa0c (diff) | |
download | linux-21a035db897975a5195dfb1525433637f30aeebf.tar.gz linux-21a035db897975a5195dfb1525433637f30aeebf.tar.bz2 linux-21a035db897975a5195dfb1525433637f30aeebf.zip |
pinctrl: u300 device tree support
This adds a simple device tree compat string for the U300 pin
controller. The base address is already passed properly as
a resource and everything works fine.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/pinctrl-u300.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/pinctrl/pinctrl-u300.c b/drivers/pinctrl/pinctrl-u300.c index 6a3a7503e6a0..06bfa09bb15c 100644 --- a/drivers/pinctrl/pinctrl-u300.c +++ b/drivers/pinctrl/pinctrl-u300.c @@ -1105,10 +1105,17 @@ static int u300_pmx_remove(struct platform_device *pdev) return 0; } +static const struct of_device_id u300_pinctrl_match[] = { + { .compatible = "stericsson,pinctrl-u300" }, + {}, +}; + + static struct platform_driver u300_pmx_driver = { .driver = { .name = DRIVER_NAME, .owner = THIS_MODULE, + .of_match_table = u300_pinctrl_match, }, .probe = u300_pmx_probe, .remove = u300_pmx_remove, |