diff options
-rw-r--r-- | drivers/reset/reset-zx2967.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/reset/reset-zx2967.c b/drivers/reset/reset-zx2967.c index 5d821513aa3e..4dabb9ec4841 100644 --- a/drivers/reset/reset-zx2967.c +++ b/drivers/reset/reset-zx2967.c | |||
@@ -8,7 +8,6 @@ | |||
8 | * License terms: GNU General Public License (GPL) version 2 | 8 | * License terms: GNU General Public License (GPL) version 2 |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <linux/module.h> | ||
12 | #include <linux/of_address.h> | 11 | #include <linux/of_address.h> |
13 | #include <linux/platform_device.h> | 12 | #include <linux/platform_device.h> |
14 | #include <linux/reset-controller.h> | 13 | #include <linux/reset-controller.h> |
@@ -89,7 +88,6 @@ static const struct of_device_id zx2967_reset_dt_ids[] = { | |||
89 | { .compatible = "zte,zx296718-reset", }, | 88 | { .compatible = "zte,zx296718-reset", }, |
90 | {}, | 89 | {}, |
91 | }; | 90 | }; |
92 | MODULE_DEVICE_TABLE(of, zx2967_reset_dt_ids); | ||
93 | 91 | ||
94 | static struct platform_driver zx2967_reset_driver = { | 92 | static struct platform_driver zx2967_reset_driver = { |
95 | .probe = zx2967_reset_probe, | 93 | .probe = zx2967_reset_probe, |
@@ -98,9 +96,4 @@ static struct platform_driver zx2967_reset_driver = { | |||
98 | .of_match_table = zx2967_reset_dt_ids, | 96 | .of_match_table = zx2967_reset_dt_ids, |
99 | }, | 97 | }, |
100 | }; | 98 | }; |
101 | |||
102 | builtin_platform_driver(zx2967_reset_driver); | 99 | builtin_platform_driver(zx2967_reset_driver); |
103 | |||
104 | MODULE_AUTHOR("Baoyou Xie <baoyou.xie@linaro.org>"); | ||
105 | MODULE_DESCRIPTION("ZTE zx2967 Reset Controller Driver"); | ||
106 | MODULE_LICENSE("GPL"); | ||