From: Jeffy Chen Date: Mon, 12 Mar 2018 09:51:40 +0000 (+0800) Subject: rtc: at91sam9: Set name of regmap_config X-Git-Tag: v5.15~9060^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=65d211b307655e352385bfdee7aa9754d5acb66e;p=platform%2Fkernel%2Flinux-starfive.git rtc: at91sam9: Set name of regmap_config 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: Alexandre Belloni --- diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c index 7418a76..ee71e64 100644 --- a/drivers/rtc/rtc-at91sam9.c +++ b/drivers/rtc/rtc-at91sam9.c @@ -349,6 +349,7 @@ static const struct rtc_class_ops at91_rtc_ops = { }; static const struct regmap_config gpbr_regmap_config = { + .name = "gpbr", .reg_bits = 32, .val_bits = 32, .reg_stride = 4,