From: Jeffy Chen Date: Mon, 12 Mar 2018 09:51:42 +0000 (+0800) Subject: ARM: rockchip: Set name of pmu regmap_config in smp code X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=03151b8989257bfcee6cfd5f06d9a4a06b781cf3;p=linux.git 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 Signed-off-by: Heiko Stuebner --- diff --git a/arch/arm/mach-rockchip/platsmp.c b/arch/arm/mach-rockchip/platsmp.c index ecec340ca3457..51984a40b097f 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,