The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [asahilinux:bits/120-spmi 4/4] drivers/spmi/spmi-apple-controller.c:98:15: warning: variable 'rsp' set but not used
@ 2022-07-17  1:43 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2022-07-17  1:43 UTC (permalink / raw)
  To: Hector Martin; +Cc: llvm, kbuild-all, linux-kernel

tree:   https://github.com/AsahiLinux/linux bits/120-spmi
head:   33e9b741cc336eae2465b02a86130c0c3f74e898
commit: 33e9b741cc336eae2465b02a86130c0c3f74e898 [4/4] spmi: apple: Properly wait for status data after write
config: hexagon-allyesconfig (https://download.01.org/0day-ci/archive/20220717/202207170930.CP6Weylo-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 07022e6cf9b5b3baa642be53d0b3c3f1c403dbfd)
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/AsahiLinux/linux/commit/33e9b741cc336eae2465b02a86130c0c3f74e898
        git remote add asahilinux https://github.com/AsahiLinux/linux
        git fetch --no-tags asahilinux bits/120-spmi
        git checkout 33e9b741cc336eae2465b02a86130c0c3f74e898
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=hexagon SHELL=/bin/bash drivers/block/ drivers/iio/light/ drivers/media/i2c/ drivers/net/pcs/ drivers/pinctrl/nuvoton/ drivers/spmi/ kernel/trace/

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

All warnings (new ones prefixed by >>):

>> drivers/spmi/spmi-apple-controller.c:98:15: warning: variable 'rsp' set but not used [-Wunused-but-set-variable]
           volatile u32 rsp;
                        ^
   1 warning generated.


vim +/rsp +98 drivers/spmi/spmi-apple-controller.c

c6ab839751d160 Jean-Francois Bortolotti 2022-02-04   92  
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04   93  static int spmi_write_cmd(struct spmi_controller *ctrl,
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04   94  			  u8 opc, u8 slave_id, u16 slave_addr, const u8 *__buf, size_t bc)
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04   95  {
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04   96      struct apple_spmi *spmi;
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04   97  	u32 spmi_cmd = opc|slave_id<<8|slave_addr<<16|(bc-1)|(1<<15);
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  @98  	volatile u32 rsp;
33e9b741cc336e Hector Martin            2022-07-02   99  	volatile u32 status;
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  100  	size_t i=0,j;
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  101  
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  102  	spmi = spmi_controller_get_drvdata(ctrl);
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  103  
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  104  	write_reg(spmi_cmd, spmi, SPMI_CMD_REG);
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  105  
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  106  	while (i<bc) {
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  107  		j=0;
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  108  		spmi_cmd=0;
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  109  		while ((j<4)&(i<bc)) {
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  110  			spmi_cmd |= __buf[i++]<<(j++*8);
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  111  		}
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  112  		write_reg(spmi_cmd, spmi, SPMI_CMD_REG);
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  113  	}
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  114  
33e9b741cc336e Hector Martin            2022-07-02  115  	/* Wait for Rx FIFO to have something */
33e9b741cc336e Hector Martin            2022-07-02  116  	/* Quite ugly msleep, need to find a better way to do it */
33e9b741cc336e Hector Martin            2022-07-02  117  	i=0;
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  118  	do {
33e9b741cc336e Hector Martin            2022-07-02  119  		status=read_reg(spmi, SPMI_STATUS_REG);
33e9b741cc336e Hector Martin            2022-07-02  120  		msleep(10);
33e9b741cc336e Hector Martin            2022-07-02  121  		i+=1;
33e9b741cc336e Hector Martin            2022-07-02  122  	} while ((status & SPMI_RX_FIFO_EMPTY) && i<5);
33e9b741cc336e Hector Martin            2022-07-02  123  
33e9b741cc336e Hector Martin            2022-07-02  124  	if(i>=5){
33e9b741cc336e Hector Martin            2022-07-02  125  		dev_err(&ctrl->dev,"spmi_write_cmd:took to long to get the status");
33e9b741cc336e Hector Martin            2022-07-02  126  		return -1;
33e9b741cc336e Hector Martin            2022-07-02  127  	}
33e9b741cc336e Hector Martin            2022-07-02  128  
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  129  	rsp = read_reg(spmi, SPMI_RSP_REG);
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  130  
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  131  	return 0;
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  132  }
c6ab839751d160 Jean-Francois Bortolotti 2022-02-04  133  

:::::: The code at line 98 was first introduced by commit
:::::: c6ab839751d160e1fcdd94636e4fe40f88a91a42 spmi: add a first basic spmi driver for Apple SoC

:::::: TO: Jean-Francois Bortolotti <jeff@borto.fr>
:::::: CC: Hector Martin <marcan@marcan.st>

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-07-17  1:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-17  1:43 [asahilinux:bits/120-spmi 4/4] drivers/spmi/spmi-apple-controller.c:98:15: warning: variable 'rsp' set but not used kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox