[xilinx-xlnx:xlnx_rebase_v6.1 894/1065] drivers/spi/spi-zynqmp-gqspi.c:229:6: warning: no previous prototype for 'zynqmp_gqspi_update_stripe'
kernel test robot
lkp at intel.com
Thu Apr 13 11:35:38 PDT 2023
tree: https://github.com/Xilinx/linux-xlnx xlnx_rebase_v6.1
head: bbf25ceb15a43c9047e14ab46a1d25c8ae6b67b4
commit: 6f819749a70b1dfaf7ab06422e342c6d26d2863a [894/1065] spi: spi-zynqmp-gqspi: Add parallel memories support in GQSPI driver
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20230414/202304140258.cAQcxGXL-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 12.1.0
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
# https://github.com/Xilinx/linux-xlnx/commit/6f819749a70b1dfaf7ab06422e342c6d26d2863a
git remote add xilinx-xlnx https://github.com/Xilinx/linux-xlnx
git fetch --no-tags xilinx-xlnx xlnx_rebase_v6.1
git checkout 6f819749a70b1dfaf7ab06422e342c6d26d2863a
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=sh olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=sh SHELL=/bin/bash drivers/spi/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp at intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202304140258.cAQcxGXL-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/spi/spi-zynqmp-gqspi.c:229:6: warning: no previous prototype for 'zynqmp_gqspi_update_stripe' [-Wmissing-prototypes]
229 | bool zynqmp_gqspi_update_stripe(const struct spi_mem_op *op)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from drivers/spi/spi-zynqmp-gqspi.c:13:
include/linux/firmware/xlnx-zynqmp.h:1334:12: warning: 'versal_pm_sha_hash' defined but not used [-Wunused-function]
1334 | static int versal_pm_sha_hash(const u64 src, const u64 dst, const u32 size)
| ^~~~~~~~~~~~~~~~~~
include/linux/firmware/xlnx-zynqmp.h:1329:12: warning: 'zynqmp_pm_fpga_get_feature_list' defined but not used [-Wunused-function]
1329 | static int zynqmp_pm_fpga_get_feature_list(u32 *value)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/firmware/xlnx-zynqmp.h:1324:12: warning: 'zynqmp_pm_fpga_get_version' defined but not used [-Wunused-function]
1324 | static int zynqmp_pm_fpga_get_version(u32 *value)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/firmware/xlnx-zynqmp.h:1254:12: warning: 'zynqmp_pm_sec_mask_write_reg' defined but not used [-Wunused-function]
1254 | static int zynqmp_pm_sec_mask_write_reg(const u32 node_id, const u32 offset,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/firmware/xlnx-zynqmp.h:1249:12: warning: 'zynqmp_pm_sec_read_reg' defined but not used [-Wunused-function]
1249 | static int zynqmp_pm_sec_read_reg(u32 node_id, u32 offset, u32 *ret_value)
| ^~~~~~~~~~~~~~~~~~~~~~
vim +/zynqmp_gqspi_update_stripe +229 drivers/spi/spi-zynqmp-gqspi.c
221
222 /**
223 * zynqmp_gqspi_update_stripe - For GQSPI controller data stripe capabilities
224 * @op: Pointer to mem ops
225 * Return: Status of the data stripe
226 *
227 * Returns true if data stripe need to be enabled, else returns false
228 */
> 229 bool zynqmp_gqspi_update_stripe(const struct spi_mem_op *op)
230 {
231 if (op->cmd.opcode == SPINOR_OP_BE_4K ||
232 op->cmd.opcode == SPINOR_OP_BE_32K ||
233 op->cmd.opcode == SPINOR_OP_CHIP_ERASE ||
234 op->cmd.opcode == SPINOR_OP_SE ||
235 op->cmd.opcode == SPINOR_OP_BE_32K_4B ||
236 op->cmd.opcode == SPINOR_OP_SE_4B ||
237 op->cmd.opcode == SPINOR_OP_BE_4K_4B ||
238 op->cmd.opcode == SPINOR_OP_WRSR ||
239 op->cmd.opcode == SPINOR_OP_BRWR ||
240 (op->cmd.opcode == SPINOR_OP_WRSR2 && !op->addr.nbytes))
241 return false;
242
243 return true;
244 }
245
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
More information about the linux-arm-kernel
mailing list