All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Peter Chen <peter.chen@nxp.com>
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
	linux-kernel@vger.kernel.org,
	Kishon Vijay Abraham I <kishon@ti.com>
Subject: drivers/phy/cadence/phy-cadence-salvo.c:213:6: warning: variable 'value' set but not used
Date: Thu, 3 Jun 2021 04:27:34 +0800	[thread overview]
Message-ID: <202106030429.eGX6oMZE-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   324c92e5e0ee0e993bdb106fac407846ed677f6b
commit: 50d35aa8c15f7210fe76de64b1940100b588bcae phy: cadence: salvo: add salvo phy driver
date:   1 year, 1 month ago
config: x86_64-randconfig-a014-20210602 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project d41cb6bb2607fa5c7a9df2b3dab361353657d225)
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
        # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=50d35aa8c15f7210fe76de64b1940100b588bcae
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout 50d35aa8c15f7210fe76de64b1940100b588bcae
        # 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 >>):

>> drivers/phy/cadence/phy-cadence-salvo.c:213:6: warning: variable 'value' set but not used [-Wunused-but-set-variable]
           u16 value;
               ^
   1 warning generated.


vim +/value +213 drivers/phy/cadence/phy-cadence-salvo.c

   207	
   208	static int cdns_salvo_phy_power_on(struct phy *phy)
   209	{
   210		struct cdns_salvo_phy *salvo_phy = phy_get_drvdata(phy);
   211		struct cdns_salvo_data *data = salvo_phy->data;
   212		int ret, i;
 > 213		u16 value;
   214	
   215		ret = clk_prepare_enable(salvo_phy->clk);
   216		if (ret)
   217			return ret;
   218	
   219		for (i = 0; i < data->init_sequence_length; i++) {
   220			struct cdns_reg_pairs *reg_pair = data->init_sequence_val + i;
   221	
   222			cdns_salvo_write(salvo_phy, reg_pair->off, reg_pair->val);
   223		}
   224	
   225		/* RXDET_IN_P3_32KHZ, Receiver detect slow clock enable */
   226		value = cdns_salvo_read(salvo_phy, TB_ADDR_TX_RCVDETSC_CTRL);
   227		value |= RXDET_IN_P3_32KHZ;
   228		cdns_salvo_write(salvo_phy, TB_ADDR_TX_RCVDETSC_CTRL,
   229				 RXDET_IN_P3_32KHZ);
   230	
   231		udelay(10);
   232	
   233		return ret;
   234	}
   235	

---
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: 36029 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: drivers/phy/cadence/phy-cadence-salvo.c:213:6: warning: variable 'value' set but not used
Date: Thu, 03 Jun 2021 04:27:34 +0800	[thread overview]
Message-ID: <202106030429.eGX6oMZE-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   324c92e5e0ee0e993bdb106fac407846ed677f6b
commit: 50d35aa8c15f7210fe76de64b1940100b588bcae phy: cadence: salvo: add salvo phy driver
date:   1 year, 1 month ago
config: x86_64-randconfig-a014-20210602 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project d41cb6bb2607fa5c7a9df2b3dab361353657d225)
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
        # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=50d35aa8c15f7210fe76de64b1940100b588bcae
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout 50d35aa8c15f7210fe76de64b1940100b588bcae
        # 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 >>):

>> drivers/phy/cadence/phy-cadence-salvo.c:213:6: warning: variable 'value' set but not used [-Wunused-but-set-variable]
           u16 value;
               ^
   1 warning generated.


vim +/value +213 drivers/phy/cadence/phy-cadence-salvo.c

   207	
   208	static int cdns_salvo_phy_power_on(struct phy *phy)
   209	{
   210		struct cdns_salvo_phy *salvo_phy = phy_get_drvdata(phy);
   211		struct cdns_salvo_data *data = salvo_phy->data;
   212		int ret, i;
 > 213		u16 value;
   214	
   215		ret = clk_prepare_enable(salvo_phy->clk);
   216		if (ret)
   217			return ret;
   218	
   219		for (i = 0; i < data->init_sequence_length; i++) {
   220			struct cdns_reg_pairs *reg_pair = data->init_sequence_val + i;
   221	
   222			cdns_salvo_write(salvo_phy, reg_pair->off, reg_pair->val);
   223		}
   224	
   225		/* RXDET_IN_P3_32KHZ, Receiver detect slow clock enable */
   226		value = cdns_salvo_read(salvo_phy, TB_ADDR_TX_RCVDETSC_CTRL);
   227		value |= RXDET_IN_P3_32KHZ;
   228		cdns_salvo_write(salvo_phy, TB_ADDR_TX_RCVDETSC_CTRL,
   229				 RXDET_IN_P3_32KHZ);
   230	
   231		udelay(10);
   232	
   233		return ret;
   234	}
   235	

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

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

             reply	other threads:[~2021-06-02 20:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-02 20:27 kernel test robot [this message]
2021-06-02 20:27 ` drivers/phy/cadence/phy-cadence-salvo.c:213:6: warning: variable 'value' set but not used kernel test robot

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=202106030429.eGX6oMZE-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=kbuild-all@lists.01.org \
    --cc=kishon@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peter.chen@nxp.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 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.