|
@@ -9,7 +9,7 @@
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
*/
|
|
|
|
|
|
-#include <linux/module.h>
|
|
|
+#include <linux/init.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_device.h>
|
|
@@ -164,7 +164,6 @@ static const struct of_device_id sun9i_a80_r_pinctrl_match[] = {
|
|
|
{ .compatible = "allwinner,sun9i-a80-r-pinctrl", },
|
|
|
{}
|
|
|
};
|
|
|
-MODULE_DEVICE_TABLE(of, sun9i_a80_r_pinctrl_match);
|
|
|
|
|
|
static struct platform_driver sun9i_a80_r_pinctrl_driver = {
|
|
|
.probe = sun9i_a80_r_pinctrl_probe,
|
|
@@ -174,8 +173,4 @@ static struct platform_driver sun9i_a80_r_pinctrl_driver = {
|
|
|
.of_match_table = sun9i_a80_r_pinctrl_match,
|
|
|
},
|
|
|
};
|
|
|
-module_platform_driver(sun9i_a80_r_pinctrl_driver);
|
|
|
-
|
|
|
-MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com");
|
|
|
-MODULE_DESCRIPTION("Allwinner A80 R_PIO pinctrl driver");
|
|
|
-MODULE_LICENSE("GPL");
|
|
|
+builtin_platform_driver(sun9i_a80_r_pinctrl_driver);
|