All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Amit Kumar Mahapatra <amit.kumar-mahapatra@amd.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v11 10/10] spi: spi-zynqmp-gqspi: Add parallel memories support in GQSPI driver
Date: Mon, 27 Nov 2023 11:11:21 +0800	[thread overview]
Message-ID: <202311271014.0Zr8ASNR-lkp@intel.com> (raw)
In-Reply-To: <20231125092137.2948-11-amit.kumar-mahapatra@amd.com>

Hi Amit,

kernel test robot noticed the following build warnings:

[auto build test WARNING on tiwai-sound/for-linus]
[also build test WARNING on linus/master v6.7-rc2]
[cannot apply to mtd/spi-nor/next lee-mfd/for-mfd-fixes next-20231124]
[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/Amit-Kumar-Mahapatra/ALSA-hda-cs35l56-Use-set-get-APIs-to-access-spi-chip_select/20231125-182341
base:   https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git for-linus
patch link:    https://lore.kernel.org/r/20231125092137.2948-11-amit.kumar-mahapatra%40amd.com
patch subject: [PATCH v11 10/10] spi: spi-zynqmp-gqspi: Add parallel memories support in GQSPI driver
config: x86_64-randconfig-121-20231127 (https://download.01.org/0day-ci/archive/20231127/202311271014.0Zr8ASNR-lkp@intel.com/config)
compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231127/202311271014.0Zr8ASNR-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/202311271014.0Zr8ASNR-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
>> drivers/spi/spi-zynqmp-gqspi.c:227:6: sparse: sparse: symbol 'zynqmp_gqspi_update_stripe' was not declared. Should it be static?

vim +/zynqmp_gqspi_update_stripe +227 drivers/spi/spi-zynqmp-gqspi.c

   219	
   220	/**
   221	 * zynqmp_gqspi_update_stripe - For GQSPI controller data stripe capabilities
   222	 * @op:	Pointer to mem ops
   223	 * Return:      Status of the data stripe
   224	 *
   225	 * Returns true if data stripe need to be enabled, else returns false
   226	 */
 > 227	bool zynqmp_gqspi_update_stripe(const struct spi_mem_op *op)
   228	{
   229		if (op->cmd.opcode ==  SPINOR_OP_BE_4K ||
   230		    op->cmd.opcode ==  SPINOR_OP_BE_32K ||
   231		    op->cmd.opcode ==  SPINOR_OP_CHIP_ERASE ||
   232		    op->cmd.opcode ==  SPINOR_OP_SE ||
   233		    op->cmd.opcode ==  SPINOR_OP_BE_32K_4B ||
   234		    op->cmd.opcode ==  SPINOR_OP_SE_4B ||
   235		    op->cmd.opcode == SPINOR_OP_BE_4K_4B ||
   236		    op->cmd.opcode ==  SPINOR_OP_WRSR ||
   237		    op->cmd.opcode ==  SPINOR_OP_BRWR ||
   238		    (op->cmd.opcode ==  SPINOR_OP_WRSR2 && !op->addr.nbytes))
   239			return false;
   240	
   241		return true;
   242	}
   243	

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

  reply	other threads:[~2023-11-27  3:12 UTC|newest]

Thread overview: 236+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-25  9:21 [PATCH v11 00/10] spi: Add support for stacked/parallel memories Amit Kumar Mahapatra
2023-11-25  9:21 ` Amit Kumar Mahapatra
2023-11-25  9:21 ` Amit Kumar Mahapatra
2023-11-25  9:21 ` [PATCH v11 01/10] mfd: tps6594: Use set/get APIs to access spi->chip_select Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-12-01  9:57   ` (subset) " Lee Jones
2023-12-01  9:57     ` Lee Jones
2023-12-01  9:57     ` Lee Jones
2023-12-01 18:50     ` Mark Brown
2023-12-01 18:50       ` Mark Brown
2023-12-01 18:50       ` Mark Brown
2023-12-06 13:45       ` Lee Jones
2023-12-06 13:45         ` Lee Jones
2023-12-06 13:45         ` Lee Jones
2023-12-07 13:38       ` [GIT PULL] Immutable branch between MFD and SPI due for the v6.8 merge window Lee Jones
2023-12-07 13:38         ` Lee Jones
2023-12-07 13:38         ` Lee Jones
2023-12-07 16:20         ` Mark Brown
2023-12-07 16:20           ` Mark Brown
2023-12-07 16:20           ` Mark Brown
2023-11-25  9:21 ` [PATCH v11 02/10] ALSA: hda/cs35l56: Use set/get APIs to access spi->chip_select Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21 ` [PATCH v11 03/10] spi: Add multi-cs memories support in SPI core Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2024-01-12 19:11   ` Guenter Roeck
2024-01-12 19:11     ` Guenter Roeck
2024-01-12 19:11     ` Guenter Roeck
2024-01-12 19:16     ` Mark Brown
2024-01-12 19:16       ` Mark Brown
2024-01-12 19:16       ` Mark Brown
2024-01-12 20:05       ` Guenter Roeck
2024-01-12 20:05         ` Guenter Roeck
2024-01-12 20:05         ` Guenter Roeck
2024-01-20 17:05     ` Guenter Roeck
2024-01-20 17:05       ` Guenter Roeck
2024-01-20 17:05       ` Guenter Roeck
2024-01-21  1:04       ` Mark Brown
2024-01-21  1:04         ` Mark Brown
2024-01-21  1:04         ` Mark Brown
2024-01-21 16:58         ` Guenter Roeck
2024-01-21 16:58           ` Guenter Roeck
2024-01-21 16:58           ` Guenter Roeck
2024-01-21 18:06           ` Michael Walle
2024-01-21 18:06             ` Michael Walle
2024-01-21 18:06             ` Michael Walle
2024-01-21 19:29             ` Guenter Roeck
2024-01-21 19:29               ` Guenter Roeck
2024-01-21 19:29               ` Guenter Roeck
2024-01-21 21:17               ` Mark Brown
2024-01-21 21:17                 ` Mark Brown
2024-01-21 21:17                 ` Mark Brown
2024-01-21 21:15             ` Mark Brown
2024-01-21 21:15               ` Mark Brown
2024-01-21 21:15               ` Mark Brown
2024-01-21  9:42     ` Linux regression tracking #adding (Thorsten Leemhuis)
2024-01-21  9:42       ` Linux regression tracking #adding (Thorsten Leemhuis)
2024-01-21  9:42       ` Linux regression tracking #adding (Thorsten Leemhuis)
2024-01-23 15:45       ` Linux regression tracking #update (Thorsten Leemhuis)
2024-01-23 15:45         ` Linux regression tracking #update (Thorsten Leemhuis)
2023-11-25  9:21 ` [PATCH v11 04/10] mtd: spi-nor: Convert macros with inline functions Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21 ` [PATCH v11 05/10] mtd: spi-nor: Add APIs to set/get nor->params Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21 ` [PATCH v11 06/10] mtd: spi-nor: Move write enable inside specific write & erase APIs Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21 ` [PATCH v11 07/10] mtd: spi-nor: Add stacked memories support in spi-nor Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-12-06 14:30   ` Tudor Ambarus
2023-12-06 14:30     ` Tudor Ambarus
2023-12-06 14:30     ` Tudor Ambarus
2023-12-06 14:43     ` Tudor Ambarus
2023-12-06 14:43       ` Tudor Ambarus
2023-12-06 14:43       ` Tudor Ambarus
2023-12-08 17:06       ` Mahapatra, Amit Kumar
2023-12-08 17:06         ` Mahapatra, Amit Kumar
2023-12-08 17:06         ` Mahapatra, Amit Kumar
2023-12-11  3:44         ` Tudor Ambarus
2023-12-11  3:44           ` Tudor Ambarus
2023-12-11  3:44           ` Tudor Ambarus
2023-12-08 17:05     ` Mahapatra, Amit Kumar
2023-12-08 17:05       ` Mahapatra, Amit Kumar
2023-12-08 17:05       ` Mahapatra, Amit Kumar
2023-12-11  3:33       ` Tudor Ambarus
2023-12-11  3:33         ` Tudor Ambarus
2023-12-11  3:33         ` Tudor Ambarus
2023-12-11  6:56         ` Mahapatra, Amit Kumar
2023-12-11  6:56           ` Mahapatra, Amit Kumar
2023-12-11  6:56           ` Mahapatra, Amit Kumar
2023-12-11  9:35           ` Tudor Ambarus
2023-12-11  9:35             ` Tudor Ambarus
2023-12-11  9:35             ` Tudor Ambarus
2023-12-11 13:37             ` Mahapatra, Amit Kumar
2023-12-11 13:37               ` Mahapatra, Amit Kumar
2023-12-11 13:37               ` Mahapatra, Amit Kumar
2023-12-12 15:02               ` Tudor Ambarus
2023-12-12 15:02                 ` Tudor Ambarus
2023-12-12 15:02                 ` Tudor Ambarus
2023-12-15  7:55                 ` Mahapatra, Amit Kumar
2023-12-15  7:55                   ` Mahapatra, Amit Kumar
2023-12-15  7:55                   ` Mahapatra, Amit Kumar
2023-12-15  8:09                   ` Tudor Ambarus
2023-12-15  8:09                     ` Tudor Ambarus
2023-12-15  8:09                     ` Tudor Ambarus
2023-12-15 10:02                     ` Mahapatra, Amit Kumar
2023-12-15 10:02                       ` Mahapatra, Amit Kumar
2023-12-15 10:02                       ` Mahapatra, Amit Kumar
2023-12-15 10:33                       ` Tudor Ambarus
2023-12-15 10:33                         ` Tudor Ambarus
2023-12-15 10:33                         ` Tudor Ambarus
2023-12-15 11:20                         ` Mahapatra, Amit Kumar
2023-12-15 11:20                           ` Mahapatra, Amit Kumar
2023-12-15 11:20                           ` Mahapatra, Amit Kumar
2023-12-19  8:26                           ` Tudor Ambarus
2023-12-19  8:26                             ` Tudor Ambarus
2023-12-19  8:26                             ` Tudor Ambarus
2023-12-21  6:54                             ` Mahapatra, Amit Kumar
2023-12-21  6:54                               ` Mahapatra, Amit Kumar
2023-12-21  6:54                               ` Mahapatra, Amit Kumar
2024-02-09 11:06                               ` Tudor Ambarus
2024-02-09 11:06                                 ` Tudor Ambarus
2024-02-09 11:06                                 ` Tudor Ambarus
2024-02-09 16:13                                 ` Tudor Ambarus
2024-02-09 16:13                                   ` Tudor Ambarus
2024-02-09 16:13                                   ` Tudor Ambarus
2024-03-13 16:03                                   ` Mahapatra, Amit Kumar
2024-03-13 16:03                                     ` Mahapatra, Amit Kumar
2024-03-13 16:03                                     ` Mahapatra, Amit Kumar
2024-07-26 12:35                                     ` Mahapatra, Amit Kumar
2024-07-26 12:35                                       ` Mahapatra, Amit Kumar
2024-07-26 12:35                                       ` Mahapatra, Amit Kumar
     [not found]                                       ` < <IA0PR12MB769944254171C39FF4171B52DCB42@IA0PR12MB7699.namprd12.prod.outlook.com>
2024-07-26 12:55                                         ` Michael Walle
2024-07-26 12:55                                           ` Michael Walle
2024-07-26 12:55                                           ` Michael Walle
2024-07-31  8:58                                           ` Michal Simek
2024-07-31  8:58                                             ` Michal Simek
2024-07-31  8:58                                             ` Michal Simek
2024-07-31  9:19                                             ` Michael Walle
2024-07-31  9:19                                               ` Michael Walle
2024-07-31  9:19                                               ` Michael Walle
2024-07-31 13:40                                               ` Michal Simek
2024-07-31 13:40                                                 ` Michal Simek
2024-07-31 13:40                                                 ` Michal Simek
2024-07-31 14:11                                                 ` Michael Walle
2024-07-31 14:11                                                   ` Michael Walle
2024-07-31 14:11                                                   ` Michael Walle
2024-08-01  6:22                                                   ` Michal Simek
2024-08-01  6:22                                                     ` Michal Simek
2024-08-01  6:22                                                     ` Michal Simek
2024-08-01  6:37                                                     ` Frager, Neal
2024-08-01  6:37                                                       ` Frager, Neal
2024-08-01  6:37                                                       ` Frager, Neal
2024-08-01  9:28                                                       ` Mahapatra, Amit Kumar
2024-08-01  9:28                                                         ` Mahapatra, Amit Kumar
2024-08-01  9:28                                                         ` Mahapatra, Amit Kumar
     [not found]                                                       ` < <CH2PR12MB50044242FE253D7B0E3425ABF0B22@CH2PR12MB5004.namprd12.prod.outlook.com>
2024-08-05  8:14                                                         ` Michael Walle
2024-08-05  8:14                                                           ` Michael Walle
2024-08-05  8:14                                                           ` Michael Walle
2024-08-05  8:27                                                     ` Michael Walle
2024-08-05  8:27                                                       ` Michael Walle
2024-08-05  8:27                                                       ` Michael Walle
2024-08-05 11:00                                                       ` Michal Simek
2024-08-05 11:00                                                         ` Michal Simek
2024-08-05 11:00                                                         ` Michal Simek
2024-08-07 13:21                                                         ` Mahapatra, Amit Kumar
2024-08-07 13:21                                                           ` Mahapatra, Amit Kumar
2024-08-07 13:21                                                           ` Mahapatra, Amit Kumar
2024-08-12  7:29                                                   ` Miquel Raynal
2024-08-12  7:29                                                     ` Miquel Raynal
2024-08-12  7:29                                                     ` Miquel Raynal
2024-08-12  7:37                                                     ` Michael Walle
2024-08-12  7:37                                                       ` Michael Walle
2024-08-12  7:37                                                       ` Michael Walle
2024-08-12  8:39                                                       ` Miquel Raynal
2024-08-12  8:39                                                         ` Miquel Raynal
2024-08-12  8:39                                                         ` Miquel Raynal
2024-08-12  8:38                                       ` Miquel Raynal
2024-08-12  8:38                                         ` Miquel Raynal
2024-08-12  8:38                                         ` Miquel Raynal
2024-08-12  9:45                                         ` Tudor Ambarus
2024-08-12  9:45                                           ` Tudor Ambarus
2024-08-12  9:45                                           ` Tudor Ambarus
2024-08-14  7:13                                         ` Mahapatra, Amit Kumar
2024-08-14  7:13                                           ` Mahapatra, Amit Kumar
2024-08-14  7:13                                           ` Mahapatra, Amit Kumar
2024-08-14  8:46                                           ` Miquel Raynal
2024-08-14  8:46                                             ` Miquel Raynal
2024-08-14  8:46                                             ` Miquel Raynal
2024-08-14 12:53                                             ` Mahapatra, Amit Kumar
2024-08-14 12:53                                               ` Mahapatra, Amit Kumar
2024-08-14 12:53                                               ` Mahapatra, Amit Kumar
2024-08-14 14:46                                               ` Miquel Raynal
2024-08-14 14:46                                                 ` Miquel Raynal
2024-08-14 14:46                                                 ` Miquel Raynal
2024-08-19 10:28                                                 ` Mahapatra, Amit Kumar
2024-08-19 10:28                                                   ` Mahapatra, Amit Kumar
2024-08-19 10:28                                                   ` Mahapatra, Amit Kumar
2024-03-13 16:03                                 ` Mahapatra, Amit Kumar
2024-03-13 16:03                                   ` Mahapatra, Amit Kumar
2024-03-13 16:03                                   ` Mahapatra, Amit Kumar
2023-12-07 17:24   ` Tudor Ambarus
2023-12-07 17:24     ` Tudor Ambarus
2023-12-07 17:24     ` Tudor Ambarus
2023-11-25  9:21 ` [PATCH v11 08/10] spi: spi-zynqmp-gqspi: Add stacked memories support in GQSPI driver Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21 ` [PATCH v11 09/10] mtd: spi-nor: Add parallel memories support in spi-nor Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25 19:21   ` kernel test robot
2023-12-04  4:35   ` Dan Carpenter
2023-11-25  9:21 ` [PATCH v11 10/10] spi: spi-zynqmp-gqspi: Add parallel memories support in GQSPI driver Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-25  9:21   ` Amit Kumar Mahapatra
2023-11-27  3:11   ` kernel test robot [this message]
2023-12-07 22:35 ` (subset) [PATCH v11 00/10] spi: Add support for stacked/parallel memories Mark Brown
2023-12-07 22:35   ` Mark Brown
2023-12-07 22:35   ` Mark Brown
2023-12-12 12:34 ` Michael Walle
2023-12-12 12:34   ` Michael Walle
2023-12-12 12:34   ` Michael Walle
2023-12-15  7:28   ` Mahapatra, Amit Kumar
2023-12-15  7:28     ` Mahapatra, Amit Kumar
2023-12-15  7:28     ` Mahapatra, Amit Kumar
2023-12-18 22:10 ` Richard Weinberger
2023-12-18 22:10   ` Richard Weinberger
2023-12-18 22:10   ` Richard Weinberger
2023-12-19  8:12   ` Miquel Raynal
2023-12-19  8:12     ` Miquel Raynal
2023-12-19  8:12     ` Miquel Raynal

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=202311271014.0Zr8ASNR-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=amit.kumar-mahapatra@amd.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.