aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mfd/wm8994-core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mfd/wm8994-core.c b/drivers/mfd/wm8994-core.c
index cdea84e727e5..3f8d591e9fe2 100644
--- a/drivers/mfd/wm8994-core.c
+++ b/drivers/mfd/wm8994-core.c
@@ -673,9 +673,9 @@ static void wm8994_device_exit(struct wm8994 *wm8994)
673} 673}
674 674
675static const struct of_device_id wm8994_of_match[] = { 675static const struct of_device_id wm8994_of_match[] = {
676 { .compatible = "wlf,wm1811", }, 676 { .compatible = "wlf,wm1811", .data = (void *)WM1811 },
677 { .compatible = "wlf,wm8994", }, 677 { .compatible = "wlf,wm8994", .data = (void *)WM8994 },
678 { .compatible = "wlf,wm8958", }, 678 { .compatible = "wlf,wm8958", .data = (void *)WM8958 },
679 { } 679 { }
680}; 680};
681MODULE_DEVICE_TABLE(of, wm8994_of_match); 681MODULE_DEVICE_TABLE(of, wm8994_of_match);