linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Nuno Sá" <noname.nuno@gmail.com>
To: "kernel test robot" <lkp@intel.com>,
	"Nuno Sá via B4 Relay" <devnull+nuno.sa.analog.com@kernel.org>,
	linux-gpio@vger.kernel.org, linux-pwm@vger.kernel.org,
	devicetree@vger.kernel.org, linux-input@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, "Lee Jones" <lee@kernel.org>,
	"Rob Herring" <robh@kernel.org>,
	"Krzysztof Kozlowski" <krzk@kernel.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	"Uwe Kleine-König" <ukleinek@kernel.org>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Bartosz Golaszewski" <brgl@bgdev.pl>,
	"Dmitry Torokhov" <dmitry.torokhov@gmail.com>,
	"Laurent Pinchart" <laurent.pinchart@ideasonboard.com>,
	"Liu Ying" <victor.liu@nxp.com>
Subject: Re: [PATCH 06/18] mfd: adp5585: add support for adp5589
Date: Fri, 14 Mar 2025 09:32:48 +0000	[thread overview]
Message-ID: <16fa84a264428b26c1d9e848270b87bf21c7fe8a.camel@gmail.com> (raw)
In-Reply-To: <202503141715.1e4xyKyq-lkp@intel.com>

On Fri, 2025-03-14 at 17:23 +0800, kernel test robot wrote:
> Hi Nuno,
> 
> kernel test robot noticed the following build warnings:
> 
> [auto build test WARNING on 4d395cb071a343196ca524d3694790f06978fe91]
> 
> url:   
> https://github.com/intel-lab-lkp/linux/commits/Nuno-S-via-B4-Relay/dt-bindings-mfd-adp5585-ease-on-the-required-properties/20250313-222511
> base:   4d395cb071a343196ca524d3694790f06978fe91
> patch link:   
> https://lore.kernel.org/r/20250313-dev-adp5589-fw-v1-6-20e80d4bd4ea%40analog.com
> patch subject: [PATCH 06/18] mfd: adp5585: add support for adp5589
> config: s390-randconfig-001-20250314
> (https://download.01.org/0day-ci/archive/20250314/202503141715.1e4xyKyq-lkp@in
> tel.com/config)
> compiler: s390-linux-gcc (GCC) 14.2.0
> reproduce (this is a W=1 build):
> (https://download.01.org/0day-ci/archive/20250314/202503141715.1e4xyKyq-lkp@in
> tel.com/reproduce)
> 
> If you fix the issue in a separate patch/commit (i.e. not just a new version
> of
> the same patch/commit), kindly add following tags
> > Reported-by: kernel test robot <lkp@intel.com>
> > Closes:
> > https://lore.kernel.org/oe-kbuild-all/202503141715.1e4xyKyq-lkp@intel.com/
> 
> All warnings (new ones prefixed by >>):
> 
> > > drivers/mfd/adp5585.c:249:34: warning: 'adp5585_02_info' defined but not
> > > used [-Wunused-const-variable=]
>      249 | static const struct adp5585_info adp5585_02_info = {
>          |                                  ^~~~~~~~~~~~~~~
> > > drivers/mfd/adp5585.c:239:34: warning: 'adp5585_01_info' defined but not
> > > used [-Wunused-const-variable=]
>      239 | static const struct adp5585_info adp5585_01_info = {
>          |                                  ^~~~~~~~~~~~~~~
> > > drivers/mfd/adp5585.c:229:34: warning: 'adp5585_info' defined but not used
> > > [-Wunused-const-variable=]
>      229 | static const struct adp5585_info adp5585_info = {
>          |                                  ^~~~~~~~~~~~
> > > drivers/mfd/adp5585.c:48:41: warning: 'adp5589_volatile_regs' defined but
> > > not used [-Wunused-const-variable=]
>       48 | static const struct regmap_access_table adp5589_volatile_regs = {
>          |                                         ^~~~~~~~~~~~~~~~~~~~~
> 

ouchhh!!!

will fix in v2

- Nuno Sá
> 
> vim +/adp5585_02_info +249 drivers/mfd/adp5585.c
> 
>    228	
>  > 229	static const struct adp5585_info adp5585_info = {
>    230		.adp5585_devs = adp5585_devs,
>    231		.regmap_config = &adp5585_regmap_configs[ADP5585_REGMAP_00],
>    232		.n_devs = ARRAY_SIZE(adp5585_devs),
>    233		.id = ADP5585_MAN_ID_VALUE,
>    234		.regs = &adp5585_regs,
>    235		.max_rows = ADP5585_MAX_ROW_NUM,
>    236		.max_cols = ADP5585_MAX_COL_NUM,
>    237	};
>    238	
>  > 239	static const struct adp5585_info adp5585_01_info = {
>    240		.adp5585_devs = adp5585_devs,
>    241		.regmap_config = &adp5585_regmap_configs[ADP5585_REGMAP_00],
>    242		.n_devs = ARRAY_SIZE(adp5585_devs),
>    243		.id = ADP5585_MAN_ID_VALUE,
>    244		.regs = &adp5585_regs,
>    245		.max_rows = ADP5585_MAX_ROW_NUM,
>    246		.max_cols = ADP5585_MAX_COL_NUM,
>    247	};
>    248	
>  > 249	static const struct adp5585_info adp5585_02_info = {
>    250		.adp5585_devs = adp5585_devs,
>    251		.regmap_config = &adp5585_regmap_configs[ADP5585_REGMAP_02],
>    252		.n_devs = ARRAY_SIZE(adp5585_devs),
>    253		.id = ADP5585_MAN_ID_VALUE,
>    254		.regs = &adp5585_regs,
>    255		.max_rows = ADP5585_MAX_ROW_NUM,
>    256		.max_cols = ADP5585_MAX_COL_NUM,
>    257	};
>    258	
> 


  reply	other threads:[~2025-03-14  9:32 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-13 14:19 [PATCH 00/18] mfd: adp5585: support keymap events and drop legacy Input driver Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 01/18] dt-bindings: mfd: adp5585: ease on the required properties Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 02/18] mfd: adp5585: enable oscilator during probe Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 03/18] pwm: adp5585: don't control OSC_EN in the pwm driver Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 04/18] mfd: adp5585: make use of MFD_CELL_NAME() Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 05/18] dt-bindings: mfd: adp5585: document adp5589 I/O expander Nuno Sá via B4 Relay
2025-03-14  8:49   ` Krzysztof Kozlowski
2025-03-14  9:38     ` Nuno Sá
2025-03-17  7:41       ` Krzysztof Kozlowski
2025-03-17  9:30         ` Nuno Sá
2025-03-17 10:41           ` Krzysztof Kozlowski
2025-03-13 14:19 ` [PATCH 06/18] mfd: adp5585: add support for adp5589 Nuno Sá via B4 Relay
2025-03-14  9:12   ` kernel test robot
2025-03-14  9:23   ` kernel test robot
2025-03-14  9:32     ` Nuno Sá [this message]
2025-03-13 14:19 ` [PATCH 07/18] gpio: adp5585: add support for the ad5589 expander Nuno Sá via B4 Relay
2025-03-14 10:53   ` Linus Walleij
2025-03-13 14:19 ` [PATCH 08/18] pwm: adp5585: add support for adp5589 Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 09/18] dt-bindings: mfd: adp5585: add properties for input events Nuno Sá via B4 Relay
2025-03-17 15:53   ` Rob Herring
2025-03-17 16:08     ` Nuno Sá
2025-03-13 14:19 ` [PATCH 10/18] mfd: adp5585: add support for key events Nuno Sá via B4 Relay
2025-03-14  9:43   ` kernel test robot
2025-03-13 14:19 ` [PATCH 11/18] gpio: adp5585: support gpi events Nuno Sá via B4 Relay
2025-03-14 10:54   ` Linus Walleij
2025-03-13 14:19 ` [PATCH 12/18] Input: adp5585: Add Analog Devices ADP5585/89 support Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 13/18] Input: adp5589: remove the driver Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 14/18] mfd: adp5585: support getting vdd regulator Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 15/18] dt-bindings: mfd: adp5585: document reset gpio Nuno Sá via B4 Relay
2025-03-14  8:52   ` Krzysztof Kozlowski
2025-03-13 14:19 ` [PATCH 16/18] mfd: adp5585: add support for a reset pin Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 17/18] pwm: adp5585: make sure to include mod_devicetable.h Nuno Sá via B4 Relay
2025-03-13 14:19 ` [PATCH 18/18] gpio: " Nuno Sá via B4 Relay

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=16fa84a264428b26c1d9e848270b87bf21c7fe8a.camel@gmail.com \
    --to=noname.nuno@gmail.com \
    --cc=brgl@bgdev.pl \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=devnull+nuno.sa.analog.com@kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=krzk@kernel.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=lee@kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=robh@kernel.org \
    --cc=ukleinek@kernel.org \
    --cc=victor.liu@nxp.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).