diff options
author | Lee Jones <lee.jones@linaro.org> | 2012-05-17 09:45:22 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-05-20 11:27:11 -0400 |
commit | 3690fb2ca5f4ecb9424d02598cb55d300f48d844 (patch) | |
tree | 25d2efcce7b0ce88cd53793feb1639c27cddb705 /drivers/mfd/ab8500-gpadc.c | |
parent | 6dff11e5ab2f752ad75d0b506fcc981fef9999c5 (diff) |
mfd: Enable ab8500-gpadc driver for Device Tree
This patch will allow the ab8500-gpadc driver to be probed during
Device Tree enabled boot.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/ab8500-gpadc.c')
-rw-r--r-- | drivers/mfd/ab8500-gpadc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mfd/ab8500-gpadc.c b/drivers/mfd/ab8500-gpadc.c index c1656ab34c34..b86fd8e1ec3f 100644 --- a/drivers/mfd/ab8500-gpadc.c +++ b/drivers/mfd/ab8500-gpadc.c | |||
@@ -648,12 +648,18 @@ static int __devexit ab8500_gpadc_remove(struct platform_device *pdev) | |||
648 | return 0; | 648 | return 0; |
649 | } | 649 | } |
650 | 650 | ||
651 | static const struct of_device_id ab8500_gpadc_match[] = { | ||
652 | { .compatible = "stericsson,ab8500-gpadc", }, | ||
653 | {} | ||
654 | }; | ||
655 | |||
651 | static struct platform_driver ab8500_gpadc_driver = { | 656 | static struct platform_driver ab8500_gpadc_driver = { |
652 | .probe = ab8500_gpadc_probe, | 657 | .probe = ab8500_gpadc_probe, |
653 | .remove = __devexit_p(ab8500_gpadc_remove), | 658 | .remove = __devexit_p(ab8500_gpadc_remove), |
654 | .driver = { | 659 | .driver = { |
655 | .name = "ab8500-gpadc", | 660 | .name = "ab8500-gpadc", |
656 | .owner = THIS_MODULE, | 661 | .owner = THIS_MODULE, |
662 | .of_match_table = ab8500_gpadc_match, | ||
657 | }, | 663 | }, |
658 | }; | 664 | }; |
659 | 665 | ||