public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Jian Hu <jian.hu@amlogic.com>,
	Jerome Brunet <jbrunet@baylibre.com>,
	Xianwei Zhao <xianwei.zhao@amlogic.com>,
	Chuan Liu <chuan.liu@amlogic.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Kevin Hilman <khilman@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Michael Turquette <mturquette@baylibre.com>,
	Dmitry Rokosov <ddrokosov@sberdevices.ru>,
	robh+dt <robh+dt@kernel.org>, Rob Herring <robh@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, Jian Hu <jian.hu@amlogic.com>,
	devicetree <devicetree@vger.kernel.org>,
	linux-clk <linux-clk@vger.kernel.org>,
	linux-amlogic <linux-amlogic@lists.infradead.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 5/5] clk: meson: t7: add t7 clock peripherals controller driver
Date: Mon, 6 Jan 2025 02:00:27 +0800	[thread overview]
Message-ID: <202501060104.R3FJGgmC-lkp@intel.com> (raw)
In-Reply-To: <20241231060047.2298871-6-jian.hu@amlogic.com>

Hi Jian,

kernel test robot noticed the following build warnings:

[auto build test WARNING on clk/clk-next]
[also build test WARNING on linus/master v6.13-rc5 next-20241220]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Jian-Hu/dt-bindings-clock-add-Amlogic-T7-PLL-clock-controller/20241231-141835
base:   https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git clk-next
patch link:    https://lore.kernel.org/r/20241231060047.2298871-6-jian.hu%40amlogic.com
patch subject: [PATCH 5/5] clk: meson: t7: add t7 clock peripherals controller driver
config: arm64-randconfig-r112-20250105 (https://download.01.org/0day-ci/archive/20250106/202501060104.R3FJGgmC-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce: (https://download.01.org/0day-ci/archive/20250106/202501060104.R3FJGgmC-lkp@intel.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/202501060104.R3FJGgmC-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
>> drivers/clk/meson/t7-peripherals.c:1276:26: sparse: sparse: Initializer entry defined twice
   drivers/clk/meson/t7-peripherals.c:1277:26: sparse:   also defined here

vim +1276 drivers/clk/meson/t7-peripherals.c

  1262	
  1263	 static u32 eth_rmii_table[] = { 0, 7 };
  1264	
  1265	static struct clk_regmap eth_rmii_sel = {
  1266		.data = &(struct clk_regmap_mux_data) {
  1267			.offset = CLKCTRL_ETH_CLK_CTRL,
  1268			.mask = 0x3,
  1269			.shift = 9,
  1270			.table = eth_rmii_table
  1271		},
  1272		.hw.init = &(struct clk_init_data){
  1273			.name = "eth_rmii_sel",
  1274			.ops = &clk_regmap_mux_ops,
  1275			.parent_data = &(const struct clk_parent_data) {
> 1276				.fw_name = "fdiv2",
  1277				.fw_name = "rmii_pad"
  1278			},
  1279			.num_parents = 2
  1280		},
  1281	};
  1282	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

      parent reply	other threads:[~2025-01-05 18:01 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-31  6:00 [PATCH 0/5] add support for T7 family clock controller Jian Hu
2024-12-31  6:00 ` [PATCH 1/5] dt-bindings: clock: add Amlogic T7 PLL " Jian Hu
2025-01-03 18:55   ` Rob Herring
2025-01-08  9:10     ` Jian Hu
2024-12-31  6:00 ` [PATCH 2/5] dt-bindings: clock: add Amlogic T7 SCMI " Jian Hu
2025-01-03 19:02   ` Rob Herring (Arm)
2024-12-31  6:00 ` [PATCH 3/5] dt-bindings: clock: add Amlogic T7 peripherals " Jian Hu
2025-01-03 19:03   ` Rob Herring (Arm)
2024-12-31  6:00 ` [PATCH 4/5] clk: meson: t7: add support for the T7 SoC PLL clock Jian Hu
2025-01-01  9:02   ` kernel test robot
2024-12-31  6:00 ` [PATCH 5/5] clk: meson: t7: add t7 clock peripherals controller driver Jian Hu
2025-01-01 17:09   ` kernel test robot
2025-01-05 18:00   ` kernel test robot [this message]

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=202501060104.R3FJGgmC-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=chuan.liu@amlogic.com \
    --cc=ddrokosov@sberdevices.ru \
    --cc=devicetree@vger.kernel.org \
    --cc=jbrunet@baylibre.com \
    --cc=jian.hu@amlogic.com \
    --cc=khilman@baylibre.com \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=neil.armstrong@linaro.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=robh+dt@kernel.org \
    --cc=robh@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=xianwei.zhao@amlogic.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