mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
clk: sifive: Allow building the driver as a module
This can reduce the kernel image size in multiplatform configurations. Signed-off-by: Samuel Holland <samuel.holland@sifive.com> Link: https://lore.kernel.org/r/20230725004248.381868-2-samuel.holland@sifive.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
ee58d6a115
commit
c8e1d8ae6a
2 changed files with 6 additions and 6 deletions
|
@ -10,7 +10,7 @@ menuconfig CLK_SIFIVE
|
|||
if CLK_SIFIVE
|
||||
|
||||
config CLK_SIFIVE_PRCI
|
||||
bool "PRCI driver for SiFive SoCs"
|
||||
tristate "PRCI driver for SiFive SoCs"
|
||||
default ARCH_SIFIVE
|
||||
select RESET_CONTROLLER
|
||||
select RESET_SIMPLE
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include <linux/clkdev.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of.h>
|
||||
#include "sifive-prci.h"
|
||||
#include "fu540-prci.h"
|
||||
|
@ -618,9 +619,8 @@ static struct platform_driver sifive_prci_driver = {
|
|||
},
|
||||
.probe = sifive_prci_probe,
|
||||
};
|
||||
module_platform_driver(sifive_prci_driver);
|
||||
|
||||
static int __init sifive_prci_init(void)
|
||||
{
|
||||
return platform_driver_register(&sifive_prci_driver);
|
||||
}
|
||||
core_initcall(sifive_prci_init);
|
||||
MODULE_AUTHOR("Paul Walmsley <paul.walmsley@sifive.com>");
|
||||
MODULE_DESCRIPTION("SiFive Power Reset Clock Interface (PRCI) driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
Loading…
Add table
Reference in a new issue