From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from regular1.263xmail.com ([211.150.99.140]:48080 "EHLO regular1.263xmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751723AbeCIBwc (ORCPT ); Thu, 8 Mar 2018 20:52:32 -0500 From: Jeffy Chen To: linux-kernel@vger.kernel.org, broonie@kernel.org, alexandre.belloni@bootlin.com Cc: Jeffy Chen , linux-rtc@vger.kernel.org, Alessandro Zummo , Nicolas Ferre , linux-arm-kernel@lists.infradead.org Subject: [PATCH v4 2/4] rtc: at91sam9: Set name of regmap_config Date: Fri, 9 Mar 2018 09:51:44 +0800 Message-Id: <20180309015146.8297-3-jeffy.chen@rock-chips.com> In-Reply-To: <20180309015146.8297-1-jeffy.chen@rock-chips.com> References: <20180309015146.8297-1-jeffy.chen@rock-chips.com> Sender: linux-rtc-owner@vger.kernel.org List-ID: 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 --- Changes in v4: Not to use rtc dev to init regmap, the gpbr is not directly related to the rtc. Changes in v3: None drivers/rtc/rtc-at91sam9.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c index 7418a763ce52..ee71e647fd43 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, -- 2.11.0