linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Yifeng Zhao <yifeng.zhao@rock-chips.com>,
	miquel.raynal@bootlin.com, richard@nod.at, vigneshr@ti.com,
	robh+dt@kernel.org
Cc: devicetree@vger.kernel.org, kbuild-all@lists.01.org,
	heiko@sntech.de, linux-rockchip@lists.infradead.org,
	Yifeng Zhao <yifeng.zhao@rock-chips.com>,
	linux-kernel@vger.kernel.org, clang-built-linux@googlegroups.com,
	linux-mtd@lists.infradead.org
Subject: Re: [PATCH v6 2/8] mtd: rawnand: rockchip: NFC drivers for RK3308, RK2928 and others
Date: Tue, 9 Jun 2020 22:48:25 +0800	[thread overview]
Message-ID: <202006092225.fsUenuzI%lkp@intel.com> (raw)
In-Reply-To: <20200609074020.23860-3-yifeng.zhao@rock-chips.com>

[-- Attachment #1: Type: text/plain, Size: 2984 bytes --]

Hi Yifeng,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on rockchip/for-next]
[also build test WARNING on robh/for-next linus/master v5.7]
[cannot apply to next-20200608]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Yifeng-Zhao/Add-Rockchip-NFC-drivers-for-RK3308-and-others/20200609-155150
base:   https://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git for-next
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project bc2b70982be8f5250cd0082a7190f8b417bd4dfe)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/mtd/nand/raw/rockchip-nand-controller.c:1180:18: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
.bch_st_off             = 0x20,
^~~~
drivers/mtd/nand/raw/rockchip-nand-controller.c:1179:18: note: previous initialization is here
.bch_st_off             = 0x20,
^~~~
1 warning generated.

vim +1180 drivers/mtd/nand/raw/rockchip-nand-controller.c

  1166	
  1167	static struct nfc_cfg nfc_v8_cfg = {
  1168			.type			= NFC_V8,
  1169			.ecc_strengths		= {16, 16, 16, 16},
  1170			.ecc_cfgs		= {
  1171				0x00000001, 0x00000001, 0x00000001, 0x00000001,
  1172			},
  1173			.flctl_off		= 0x08,
  1174			.bchctl_off		= 0x0C,
  1175			.dma_cfg_off		= 0x10,
  1176			.dma_data_buf_off	= 0x14,
  1177			.dma_oob_buf_off	= 0x18,
  1178			.dma_st_off		= 0x1C,
  1179			.bch_st_off		= 0x20,
> 1180			.bch_st_off		= 0x20,
  1181			.randmz_off		= 0x150,
  1182			.int_en_off		= 0x16C,
  1183			.int_clr_off		= 0x170,
  1184			.int_st_off		= 0x174,
  1185			.oob0_off		= 0x200,
  1186			.oob1_off		= 0x230,
  1187			.ecc0			= {
  1188				.err_flag_bit	= 2,
  1189				.low		= 3,
  1190				.low_mask	= 0x1F,
  1191				.low_bn		= 5,
  1192				.high		= 27,
  1193				.high_mask	= 0x1,
  1194			},
  1195			.ecc1			= {
  1196				.err_flag_bit	= 15,
  1197				.low		= 16,
  1198				.low_mask	= 0x1F,
  1199				.low_bn		= 5,
  1200				.high		= 29,
  1201				.high_mask	= 0x1,
  1202			},
  1203	};
  1204	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 73454 bytes --]

[-- Attachment #3: Type: text/plain, Size: 144 bytes --]

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

  parent reply	other threads:[~2020-06-09 14:49 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-09  7:40 [PATCH v6 0/8] Add Rockchip NFC drivers for RK3308 and others Yifeng Zhao
2020-06-09  7:40 ` [PATCH v6 1/8] dt-bindings: mtd: Describe Rockchip RK3xxx NAND flash controller Yifeng Zhao
2020-06-10 10:50   ` Johan Jonker
2020-06-17 21:14   ` Rob Herring
2020-06-17 21:15   ` Rob Herring
2020-06-09  7:40 ` [PATCH v6 2/8] mtd: rawnand: rockchip: NFC drivers for RK3308, RK2928 and others Yifeng Zhao
2020-06-09  9:23   ` kernel test robot
2020-06-09 14:48   ` kernel test robot [this message]
2020-06-09 16:10   ` Johan Jonker
2020-06-09 20:18     ` Johan Jonker
2020-06-11  7:53   ` Miquel Raynal
2020-06-13 13:31   ` Johan Jonker
2020-06-15  7:47     ` Miquel Raynal
2020-06-15  9:34     ` 赵仪峰
2020-06-15 10:18       ` Miquel Raynal
2020-06-09  7:40 ` [PATCH v6 3/8] MAINTAINERS: add maintainers to rockchip nfc Yifeng Zhao
2020-06-09  7:47 ` [PATCH v6 4/8] arm64: dts: rockchip: Add nfc dts for RK3308 SOC Yifeng Zhao
2020-06-09  7:49 ` [PATCH v6 5/8] arm64: dts: rockchip: Add nfc dts for PX30 SOC Yifeng Zhao
2020-06-09  7:49   ` [PATCH v6 6/8] arm: dts: rockchip: Add nfc dts for RV1108 SOC Yifeng Zhao
2020-06-09  7:49   ` [PATCH v6 7/8] arm: dts: rockchip: Add nfc dts for RK2928 and other SOC Yifeng Zhao
2020-06-09  7:49   ` [PATCH v6 8/8] arm: dts: rockchip: Add nfc dts for RK3036 SOC Yifeng Zhao

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=202006092225.fsUenuzI%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=devicetree@vger.kernel.org \
    --cc=heiko@sntech.de \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=miquel.raynal@bootlin.com \
    --cc=richard@nod.at \
    --cc=robh+dt@kernel.org \
    --cc=vigneshr@ti.com \
    --cc=yifeng.zhao@rock-chips.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).