soc: rockchip: grf: enable module

Change-Id: I8e9a264f41a8b84e559688a3c0980b01ed061031
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
This commit is contained in:
Huibin Hong
2020-07-14 20:08:35 +08:00
committed by Tao Huang
parent 530734ea06
commit 4544c0fa4d
2 changed files with 5 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ config ROCKCHIP_CPUINFO
If unsure, say N.
config ROCKCHIP_GRF
bool
tristate "Rockchip GRF"
default y
help
The General Register Files are a central component providing

View File

@@ -10,6 +10,7 @@
#include <linux/err.h>
#include <linux/mfd/syscon.h>
#include <linux/module.h>
#include <linux/of_device.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
@@ -237,3 +238,6 @@ static int __init rockchip_grf_init(void)
return 0;
}
postcore_initcall(rockchip_grf_init);
MODULE_DESCRIPTION("Rockchip GRF");
MODULE_LICENSE("GPL");