diff options
-rw-r--r-- | drivers/mfd/ab8500-debugfs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mfd/ab8500-debugfs.c b/drivers/mfd/ab8500-debugfs.c index 9a0211aa8897..50c4c89ab220 100644 --- a/drivers/mfd/ab8500-debugfs.c +++ b/drivers/mfd/ab8500-debugfs.c | |||
@@ -608,10 +608,16 @@ static int __devexit ab8500_debug_remove(struct platform_device *plf) | |||
608 | return 0; | 608 | return 0; |
609 | } | 609 | } |
610 | 610 | ||
611 | static const struct of_device_id ab8500_debug_match[] = { | ||
612 | { .compatible = "stericsson,ab8500-debug", }, | ||
613 | {} | ||
614 | }; | ||
615 | |||
611 | static struct platform_driver ab8500_debug_driver = { | 616 | static struct platform_driver ab8500_debug_driver = { |
612 | .driver = { | 617 | .driver = { |
613 | .name = "ab8500-debug", | 618 | .name = "ab8500-debug", |
614 | .owner = THIS_MODULE, | 619 | .owner = THIS_MODULE, |
620 | .of_match_table = ab8500_debug_match, | ||
615 | }, | 621 | }, |
616 | .probe = ab8500_debug_probe, | 622 | .probe = ab8500_debug_probe, |
617 | .remove = __devexit_p(ab8500_debug_remove) | 623 | .remove = __devexit_p(ab8500_debug_remove) |