diff options
author | Lee Jones <lee.jones@linaro.org> | 2012-05-18 09:39:12 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-05-20 17:27:13 +0200 |
commit | 3770c75a6852a87afc66cd514c13899f8a288cef (patch) | |
tree | 9e46d3ef1b9a3aa1b5d9c07b6bef6a65df2b3011 /drivers/misc | |
parent | 01247ef7ecbf36515a1cc3c2b34e4738aab1bd40 (diff) | |
download | linux-3.10-3770c75a6852a87afc66cd514c13899f8a288cef.tar.gz linux-3.10-3770c75a6852a87afc66cd514c13899f8a288cef.tar.bz2 linux-3.10-3770c75a6852a87afc66cd514c13899f8a288cef.zip |
mfd: Enable Device Tree support in the ab8500-pwm driver
This patch ensures probing of the ab8500-pwm driver during a DT
enabled boot, so long as the associated nodes are present in the
Device Tree binary.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/ab8500-pwm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/misc/ab8500-pwm.c b/drivers/misc/ab8500-pwm.c index d7a9aa14e5d..042a8fe4efa 100644 --- a/drivers/misc/ab8500-pwm.c +++ b/drivers/misc/ab8500-pwm.c @@ -142,10 +142,16 @@ static int __devexit ab8500_pwm_remove(struct platform_device *pdev) return 0; } +static const struct of_device_id ab8500_pwm_match[] = { + { .compatible = "stericsson,ab8500-pwm", }, + {} +}; + static struct platform_driver ab8500_pwm_driver = { .driver = { .name = "ab8500-pwm", .owner = THIS_MODULE, + .of_match_table = ab8500_pwm_match, }, .probe = ab8500_pwm_probe, .remove = __devexit_p(ab8500_pwm_remove), |