mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-04-15 13:50:42 +00:00
reset: pistachio: make it explicitly non-modular
The Kconfig currently controlling compilation of this code is: drivers/reset/Kconfig:config RESET_PISTACHIO drivers/reset/Kconfig: bool "Pistachio Reset Driver" if COMPILE_TEST ...meaning that it currently is not being built as a module by anyone. Lets remove the couple traces of modular infrastructure use, so that when reading the driver there is no doubt it is builtin-only. Since module_platform_driver() uses the same init level priority as builtin_platform_driver() the init ordering remains unchanged with this commit. Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code. We also delete the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Damien Horsley <Damien.Horsley@imgtec.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
This commit is contained in:
parent
90ce95ab3d
commit
01db1cb154
@ -10,7 +10,7 @@
|
|||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/module.h>
|
#include <linux/init.h>
|
||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/regmap.h>
|
#include <linux/regmap.h>
|
||||||
@ -128,7 +128,6 @@ static const struct of_device_id pistachio_reset_dt_ids[] = {
|
|||||||
{ .compatible = "img,pistachio-reset", },
|
{ .compatible = "img,pistachio-reset", },
|
||||||
{ /* sentinel */ },
|
{ /* sentinel */ },
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, pistachio_reset_dt_ids);
|
|
||||||
|
|
||||||
static struct platform_driver pistachio_reset_driver = {
|
static struct platform_driver pistachio_reset_driver = {
|
||||||
.probe = pistachio_reset_probe,
|
.probe = pistachio_reset_probe,
|
||||||
@ -137,8 +136,4 @@ static struct platform_driver pistachio_reset_driver = {
|
|||||||
.of_match_table = pistachio_reset_dt_ids,
|
.of_match_table = pistachio_reset_dt_ids,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
module_platform_driver(pistachio_reset_driver);
|
builtin_platform_driver(pistachio_reset_driver);
|
||||||
|
|
||||||
MODULE_AUTHOR("Damien Horsley <Damien.Horsley@imgtec.com>");
|
|
||||||
MODULE_DESCRIPTION("Pistacho Reset Controller Driver");
|
|
||||||
MODULE_LICENSE("GPL v2");
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user