|
@@ -3,6 +3,8 @@
|
|
|
*
|
|
|
* Xilinx Zynq Reset controller driver
|
|
|
*
|
|
|
+ * Author: Moritz Fischer <moritz.fischer@ettus.com>
|
|
|
+ *
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
@@ -15,7 +17,7 @@
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
#include <linux/io.h>
|
|
|
-#include <linux/module.h>
|
|
|
+#include <linux/init.h>
|
|
|
#include <linux/mfd/syscon.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/platform_device.h>
|
|
@@ -137,8 +139,4 @@ static struct platform_driver zynq_reset_driver = {
|
|
|
.of_match_table = zynq_reset_dt_ids,
|
|
|
},
|
|
|
};
|
|
|
-module_platform_driver(zynq_reset_driver);
|
|
|
-
|
|
|
-MODULE_LICENSE("GPL v2");
|
|
|
-MODULE_AUTHOR("Moritz Fischer <moritz.fischer@ettus.com>");
|
|
|
-MODULE_DESCRIPTION("Zynq Reset Controller Driver");
|
|
|
+builtin_platform_driver(zynq_reset_driver);
|