All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: linux-rtc@vger.kernel.org,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH 11/21] rtc: pcf85063: quiet maybe-unused variable warnings
Date: Tue,  2 Feb 2021 12:22:08 +0100	[thread overview]
Message-ID: <20210202112219.3610853-12-alexandre.belloni@bootlin.com> (raw)
In-Reply-To: <20210202112219.3610853-1-alexandre.belloni@bootlin.com>

pcf85063a_config and rv8263_config are only referenced by
pcf85063_of_match, move them in the #ifdef CONFIG_OF section.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
---
 drivers/rtc/rtc-pcf85063.c | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/drivers/rtc/rtc-pcf85063.c b/drivers/rtc/rtc-pcf85063.c
index f7e7c9eb0781..aef6c1ee8bb0 100644
--- a/drivers/rtc/rtc-pcf85063.c
+++ b/drivers/rtc/rtc-pcf85063.c
@@ -501,15 +501,6 @@ static struct clk *pcf85063_clkout_register_clk(struct pcf85063 *pcf85063)
 }
 #endif
 
-static const struct pcf85063_config pcf85063a_config = {
-	.regmap = {
-		.reg_bits = 8,
-		.val_bits = 8,
-		.max_register = 0x11,
-	},
-	.has_alarms = 1,
-};
-
 static const struct pcf85063_config pcf85063tp_config = {
 	.regmap = {
 		.reg_bits = 8,
@@ -518,16 +509,6 @@ static const struct pcf85063_config pcf85063tp_config = {
 	},
 };
 
-static const struct pcf85063_config rv8263_config = {
-	.regmap = {
-		.reg_bits = 8,
-		.val_bits = 8,
-		.max_register = 0x11,
-	},
-	.has_alarms = 1,
-	.force_cap_7000 = 1,
-};
-
 static int pcf85063_probe(struct i2c_client *client)
 {
 	struct pcf85063 *pcf85063;
@@ -611,6 +592,25 @@ static int pcf85063_probe(struct i2c_client *client)
 }
 
 #ifdef CONFIG_OF
+static const struct pcf85063_config pcf85063a_config = {
+	.regmap = {
+		.reg_bits = 8,
+		.val_bits = 8,
+		.max_register = 0x11,
+	},
+	.has_alarms = 1,
+};
+
+static const struct pcf85063_config rv8263_config = {
+	.regmap = {
+		.reg_bits = 8,
+		.val_bits = 8,
+		.max_register = 0x11,
+	},
+	.has_alarms = 1,
+	.force_cap_7000 = 1,
+};
+
 static const struct of_device_id pcf85063_of_match[] = {
 	{ .compatible = "nxp,pcf85063", .data = &pcf85063tp_config },
 	{ .compatible = "nxp,pcf85063tp", .data = &pcf85063tp_config },
-- 
2.29.2


  parent reply	other threads:[~2021-02-02 11:27 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-02 11:21 [PATCH 00/21] rtc: remove make W=1 warnings Alexandre Belloni
2021-02-02 11:21 ` [PATCH 01/21] rtc: class: remove bogus documentation Alexandre Belloni
2021-02-02 11:21 ` [PATCH 02/21] rtc: armada38x: depend on OF Alexandre Belloni
2021-02-02 11:22 ` [PATCH 03/21] rtc: bq32k: quiet maybe-unused variable warning Alexandre Belloni
2021-02-02 11:22 ` [PATCH 04/21] rtc: brcmstb-waketimer: " Alexandre Belloni
2021-02-02 11:22   ` Alexandre Belloni
2021-02-02 17:22   ` Florian Fainelli
2021-02-02 17:22     ` Florian Fainelli
2021-02-02 17:23   ` Florian Fainelli
2021-02-02 17:23     ` Florian Fainelli
2021-02-02 11:22 ` [PATCH 05/21] rtc: digicolor: " Alexandre Belloni
2021-02-02 11:22   ` Alexandre Belloni
2021-02-02 11:32   ` Baruch Siach
2021-02-02 11:32     ` Baruch Siach
2021-02-02 11:22 ` [PATCH 06/21] rtc: ds1672: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 07/21] rtc: ds3232: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 08/21] rtc: isl1208: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 09/21] rtc: m41t80: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 10/21] rtc: meson: " Alexandre Belloni
2021-02-02 11:22   ` Alexandre Belloni
2021-02-02 11:22   ` Alexandre Belloni
2021-02-02 16:26   ` Kevin Hilman
2021-02-02 16:26     ` Kevin Hilman
2021-02-02 16:26     ` Kevin Hilman
2021-02-02 11:22 ` Alexandre Belloni [this message]
2021-02-02 11:22 ` [PATCH 12/21] rtc: pcf85363: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 13/21] rtc: rs5c372: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 14/21] rtc: rv3028: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 15/21] rtc: rv3029: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 16/21] rtc: rv3032: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 17/21] rtc: rv8803: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 18/21] rtc: rx8010: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 19/21] rtc: rx8581: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 20/21] rtc: s35390a: " Alexandre Belloni
2021-02-02 11:22 ` [PATCH 21/21] rtc: sd3078: " Alexandre Belloni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210202112219.3610853-12-alexandre.belloni@bootlin.com \
    --to=alexandre.belloni@bootlin.com \
    --cc=a.zummo@towertech.it \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rtc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.