diff options
author | Jeffy Chen <jeffy.chen@rock-chips.com> | 2018-03-12 17:51:42 +0800 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2018-03-12 11:09:36 +0100 |
commit | 03151b8989257bfcee6cfd5f06d9a4a06b781cf3 (patch) | |
tree | bec120bd94ba4d42280e461c949b3a77bc085e0e /arch/arm/mach-rockchip | |
parent | 7928b2cbe55b2a410a0f5c1f154610059c57b1b2 (diff) | |
download | linux-03151b8989257bfcee6cfd5f06d9a4a06b781cf3.tar.bz2 |
ARM: rockchip: Set name of pmu regmap_config in smp code
We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm/mach-rockchip')
-rw-r--r-- | arch/arm/mach-rockchip/platsmp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/platsmp.c b/arch/arm/mach-rockchip/platsmp.c index ecec340ca345..51984a40b097 100644 --- a/arch/arm/mach-rockchip/platsmp.c +++ b/arch/arm/mach-rockchip/platsmp.c @@ -208,6 +208,7 @@ static int __init rockchip_smp_prepare_sram(struct device_node *node) } static const struct regmap_config rockchip_pmu_regmap_config = { + .name = "rockchip-pmu", .reg_bits = 32, .val_bits = 32, .reg_stride = 4, |