linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990'
@ 2021-09-29 17:35 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2021-09-29 17:35 UTC (permalink / raw)
  To: Rocky Liao; +Cc: llvm, kbuild-all, linux-kernel, Marcel Holtmann

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   02d5e016800d082058b3d3b7c3ede136cdc6ddcb
commit: e5d6468fe9d8dced9af0c548a359a7dbeb31c931 Bluetooth: hci_qca: Add support for Qualcomm Bluetooth SoC QCA6390
date:   1 year, 6 months ago
config: x86_64-randconfig-r016-20210929 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project dc6e8dfdfe7efecfda318d43a06fae18b40eb498)
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://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 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/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3990 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1703:35: warning: unused variable 'qca_soc_data_wcn3991' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3991 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1714:35: warning: unused variable 'qca_soc_data_wcn3998' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3998 = {
                                     ^
   3 warnings generated.


vim +/qca_soc_data_wcn3990 +1692 drivers/bluetooth/hci_qca.c

0ff252c1976da5 Ben Young Tae Kim      2015-08-10  1691  
523760b7ff8871 Harish Bandi           2019-04-26 @1692  static const struct qca_vreg_data qca_soc_data_wcn3990 = {
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1693  	.soc_type = QCA_WCN3990,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1694  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1695  		{ "vddio", 15000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1696  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1697  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1698  		{ "vddch0", 450000 },
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1699  	},
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1700  	.num_vregs = 4,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1701  };
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1702  
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06 @1703  static const struct qca_vreg_data qca_soc_data_wcn3991 = {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1704  	.soc_type = QCA_WCN3991,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1705  	.vregs = (struct qca_vreg []) {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1706  		{ "vddio", 15000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1707  		{ "vddxo", 80000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1708  		{ "vddrf", 300000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1709  		{ "vddch0", 450000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1710  	},
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1711  	.num_vregs = 4,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1712  };
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1713  
523760b7ff8871 Harish Bandi           2019-04-26 @1714  static const struct qca_vreg_data qca_soc_data_wcn3998 = {
523760b7ff8871 Harish Bandi           2019-04-26  1715  	.soc_type = QCA_WCN3998,
523760b7ff8871 Harish Bandi           2019-04-26  1716  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1717  		{ "vddio", 10000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1718  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1719  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1720  		{ "vddch0", 450000 },
523760b7ff8871 Harish Bandi           2019-04-26  1721  	},
523760b7ff8871 Harish Bandi           2019-04-26  1722  	.num_vregs = 4,
523760b7ff8871 Harish Bandi           2019-04-26  1723  };
523760b7ff8871 Harish Bandi           2019-04-26  1724  

:::::: The code at line 1692 was first introduced by commit
:::::: 523760b7ff8871281aaedc44c305926469ab47f8 Bluetooth: hci_qca: Added support for WCN3998

:::::: TO: Harish Bandi <c-hbandi@codeaurora.org>
:::::: CC: Marcel Holtmann <marcel@holtmann.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990'
@ 2021-11-06  5:14 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2021-11-06  5:14 UTC (permalink / raw)
  To: Rocky Liao; +Cc: llvm, kbuild-all, linux-kernel, Marcel Holtmann

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

Hi Rocky,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   fe91c4725aeed35023ba4f7a1e1adfebb6878c23
commit: e5d6468fe9d8dced9af0c548a359a7dbeb31c931 Bluetooth: hci_qca: Add support for Qualcomm Bluetooth SoC QCA6390
date:   1 year, 7 months ago
config: x86_64-randconfig-r016-20210929 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project dc6e8dfdfe7efecfda318d43a06fae18b40eb498)
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://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 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/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3990 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1703:35: warning: unused variable 'qca_soc_data_wcn3991' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3991 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1714:35: warning: unused variable 'qca_soc_data_wcn3998' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3998 = {
                                     ^
   3 warnings generated.


vim +/qca_soc_data_wcn3990 +1692 drivers/bluetooth/hci_qca.c

0ff252c1976da5 Ben Young Tae Kim      2015-08-10  1691  
523760b7ff8871 Harish Bandi           2019-04-26 @1692  static const struct qca_vreg_data qca_soc_data_wcn3990 = {
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1693  	.soc_type = QCA_WCN3990,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1694  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1695  		{ "vddio", 15000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1696  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1697  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1698  		{ "vddch0", 450000 },
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1699  	},
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1700  	.num_vregs = 4,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1701  };
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1702  
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06 @1703  static const struct qca_vreg_data qca_soc_data_wcn3991 = {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1704  	.soc_type = QCA_WCN3991,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1705  	.vregs = (struct qca_vreg []) {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1706  		{ "vddio", 15000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1707  		{ "vddxo", 80000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1708  		{ "vddrf", 300000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1709  		{ "vddch0", 450000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1710  	},
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1711  	.num_vregs = 4,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1712  };
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1713  
523760b7ff8871 Harish Bandi           2019-04-26 @1714  static const struct qca_vreg_data qca_soc_data_wcn3998 = {
523760b7ff8871 Harish Bandi           2019-04-26  1715  	.soc_type = QCA_WCN3998,
523760b7ff8871 Harish Bandi           2019-04-26  1716  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1717  		{ "vddio", 10000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1718  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1719  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1720  		{ "vddch0", 450000 },
523760b7ff8871 Harish Bandi           2019-04-26  1721  	},
523760b7ff8871 Harish Bandi           2019-04-26  1722  	.num_vregs = 4,
523760b7ff8871 Harish Bandi           2019-04-26  1723  };
523760b7ff8871 Harish Bandi           2019-04-26  1724  

:::::: The code at line 1692 was first introduced by commit
:::::: 523760b7ff8871281aaedc44c305926469ab47f8 Bluetooth: hci_qca: Added support for WCN3998

:::::: TO: Harish Bandi <c-hbandi@codeaurora.org>
:::::: CC: Marcel Holtmann <marcel@holtmann.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990'
@ 2021-05-03 23:02 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2021-05-03 23:02 UTC (permalink / raw)
  To: Rocky Liao; +Cc: kbuild-all, clang-built-linux, linux-kernel, Marcel Holtmann

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

Hi Rocky,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   5e321ded302da4d8c5d5dd953423d9b748ab3775
commit: e5d6468fe9d8dced9af0c548a359a7dbeb31c931 Bluetooth: hci_qca: Add support for Qualcomm Bluetooth SoC QCA6390
date:   1 year, 1 month ago
config: x86_64-randconfig-a002-20210504 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 8f5a2a5836cc8e4c1def2bdeb022e7b496623439)
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=e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 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/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3990 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1703:35: warning: unused variable 'qca_soc_data_wcn3991' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3991 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1714:35: warning: unused variable 'qca_soc_data_wcn3998' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3998 = {
                                     ^
   3 warnings generated.


vim +/qca_soc_data_wcn3990 +1692 drivers/bluetooth/hci_qca.c

0ff252c1976da5 Ben Young Tae Kim      2015-08-10  1691  
523760b7ff8871 Harish Bandi           2019-04-26 @1692  static const struct qca_vreg_data qca_soc_data_wcn3990 = {
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1693  	.soc_type = QCA_WCN3990,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1694  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1695  		{ "vddio", 15000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1696  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1697  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1698  		{ "vddch0", 450000 },
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1699  	},
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1700  	.num_vregs = 4,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1701  };
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1702  
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06 @1703  static const struct qca_vreg_data qca_soc_data_wcn3991 = {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1704  	.soc_type = QCA_WCN3991,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1705  	.vregs = (struct qca_vreg []) {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1706  		{ "vddio", 15000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1707  		{ "vddxo", 80000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1708  		{ "vddrf", 300000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1709  		{ "vddch0", 450000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1710  	},
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1711  	.num_vregs = 4,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1712  };
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1713  
523760b7ff8871 Harish Bandi           2019-04-26 @1714  static const struct qca_vreg_data qca_soc_data_wcn3998 = {
523760b7ff8871 Harish Bandi           2019-04-26  1715  	.soc_type = QCA_WCN3998,
523760b7ff8871 Harish Bandi           2019-04-26  1716  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1717  		{ "vddio", 10000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1718  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1719  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1720  		{ "vddch0", 450000 },
523760b7ff8871 Harish Bandi           2019-04-26  1721  	},
523760b7ff8871 Harish Bandi           2019-04-26  1722  	.num_vregs = 4,
523760b7ff8871 Harish Bandi           2019-04-26  1723  };
523760b7ff8871 Harish Bandi           2019-04-26  1724  

:::::: The code at line 1692 was first introduced by commit
:::::: 523760b7ff8871281aaedc44c305926469ab47f8 Bluetooth: hci_qca: Added support for WCN3998

:::::: TO: Harish Bandi <c-hbandi@codeaurora.org>
:::::: CC: Marcel Holtmann <marcel@holtmann.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990'
@ 2020-09-13 11:59 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2020-09-13 11:59 UTC (permalink / raw)
  To: Rocky Liao; +Cc: kbuild-all, clang-built-linux, linux-kernel, Marcel Holtmann

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

Hi Rocky,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   ef2e9a563b0cd7965e2a1263125dcbb1c86aa6cc
commit: e5d6468fe9d8dced9af0c548a359a7dbeb31c931 Bluetooth: hci_qca: Add support for Qualcomm Bluetooth SoC QCA6390
date:   5 months ago
config: x86_64-randconfig-r026-20200912 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 45d0343900d3005d1d00cbb1a87c419c085dec71)
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
        git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        # 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/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3990 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1703:35: warning: unused variable 'qca_soc_data_wcn3991' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3991 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1714:35: warning: unused variable 'qca_soc_data_wcn3998' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3998 = {
                                     ^
   3 warnings generated.

# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e5d6468fe9d8dced9af0c548a359a7dbeb31c931
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
vim +/qca_soc_data_wcn3990 +1692 drivers/bluetooth/hci_qca.c

0ff252c1976da5d Ben Young Tae Kim      2015-08-10  1691  
523760b7ff88712 Harish Bandi           2019-04-26 @1692  static const struct qca_vreg_data qca_soc_data_wcn3990 = {
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1693  	.soc_type = QCA_WCN3990,
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1694  	.vregs = (struct qca_vreg []) {
f2edd66e515b994 Bjorn Andersson        2019-10-17  1695  		{ "vddio", 15000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1696  		{ "vddxo", 80000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1697  		{ "vddrf", 300000 },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1698  		{ "vddch0", 450000 },
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1699  	},
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1700  	.num_vregs = 4,
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1701  };
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1702  
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06 @1703  static const struct qca_vreg_data qca_soc_data_wcn3991 = {
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1704  	.soc_type = QCA_WCN3991,
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1705  	.vregs = (struct qca_vreg []) {
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1706  		{ "vddio", 15000  },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1707  		{ "vddxo", 80000  },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1708  		{ "vddrf", 300000 },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1709  		{ "vddch0", 450000 },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1710  	},
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1711  	.num_vregs = 4,
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1712  };
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1713  
523760b7ff88712 Harish Bandi           2019-04-26 @1714  static const struct qca_vreg_data qca_soc_data_wcn3998 = {
523760b7ff88712 Harish Bandi           2019-04-26  1715  	.soc_type = QCA_WCN3998,
523760b7ff88712 Harish Bandi           2019-04-26  1716  	.vregs = (struct qca_vreg []) {
f2edd66e515b994 Bjorn Andersson        2019-10-17  1717  		{ "vddio", 10000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1718  		{ "vddxo", 80000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1719  		{ "vddrf", 300000 },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1720  		{ "vddch0", 450000 },
523760b7ff88712 Harish Bandi           2019-04-26  1721  	},
523760b7ff88712 Harish Bandi           2019-04-26  1722  	.num_vregs = 4,
523760b7ff88712 Harish Bandi           2019-04-26  1723  };
523760b7ff88712 Harish Bandi           2019-04-26  1724  

:::::: The code at line 1692 was first introduced by commit
:::::: 523760b7ff8871281aaedc44c305926469ab47f8 Bluetooth: hci_qca: Added support for WCN3998

:::::: TO: Harish Bandi <c-hbandi@codeaurora.org>
:::::: CC: Marcel Holtmann <marcel@holtmann.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990'
@ 2020-09-10 18:41 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2020-09-10 18:41 UTC (permalink / raw)
  To: Rocky Liao; +Cc: kbuild-all, clang-built-linux, linux-kernel, Marcel Holtmann

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

Hi Rocky,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   7fe10096c1508c7f033d34d0741809f8eecc1ed4
commit: e5d6468fe9d8dced9af0c548a359a7dbeb31c931 Bluetooth: hci_qca: Add support for Qualcomm Bluetooth SoC QCA6390
date:   5 months ago
config: x86_64-randconfig-a016-20200910 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 0a5dc7effb191eff740e0e7ae7bd8e1f6bdb3ad9)
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
        git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        # 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/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3990 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1703:35: warning: unused variable 'qca_soc_data_wcn3991' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3991 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1714:35: warning: unused variable 'qca_soc_data_wcn3998' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3998 = {
                                     ^
   3 warnings generated.

# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e5d6468fe9d8dced9af0c548a359a7dbeb31c931
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
vim +/qca_soc_data_wcn3990 +1692 drivers/bluetooth/hci_qca.c

0ff252c1976da5d Ben Young Tae Kim      2015-08-10  1691  
523760b7ff88712 Harish Bandi           2019-04-26 @1692  static const struct qca_vreg_data qca_soc_data_wcn3990 = {
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1693  	.soc_type = QCA_WCN3990,
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1694  	.vregs = (struct qca_vreg []) {
f2edd66e515b994 Bjorn Andersson        2019-10-17  1695  		{ "vddio", 15000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1696  		{ "vddxo", 80000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1697  		{ "vddrf", 300000 },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1698  		{ "vddch0", 450000 },
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1699  	},
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1700  	.num_vregs = 4,
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1701  };
fa9ad876b8e0ebd Balakrishna Godavarthi 2018-08-03  1702  
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06 @1703  static const struct qca_vreg_data qca_soc_data_wcn3991 = {
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1704  	.soc_type = QCA_WCN3991,
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1705  	.vregs = (struct qca_vreg []) {
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1706  		{ "vddio", 15000  },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1707  		{ "vddxo", 80000  },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1708  		{ "vddrf", 300000 },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1709  		{ "vddch0", 450000 },
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1710  	},
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1711  	.num_vregs = 4,
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1712  };
7d250a062f75e6e Balakrishna Godavarthi 2019-11-06  1713  
523760b7ff88712 Harish Bandi           2019-04-26 @1714  static const struct qca_vreg_data qca_soc_data_wcn3998 = {
523760b7ff88712 Harish Bandi           2019-04-26  1715  	.soc_type = QCA_WCN3998,
523760b7ff88712 Harish Bandi           2019-04-26  1716  	.vregs = (struct qca_vreg []) {
f2edd66e515b994 Bjorn Andersson        2019-10-17  1717  		{ "vddio", 10000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1718  		{ "vddxo", 80000  },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1719  		{ "vddrf", 300000 },
f2edd66e515b994 Bjorn Andersson        2019-10-17  1720  		{ "vddch0", 450000 },
523760b7ff88712 Harish Bandi           2019-04-26  1721  	},
523760b7ff88712 Harish Bandi           2019-04-26  1722  	.num_vregs = 4,
523760b7ff88712 Harish Bandi           2019-04-26  1723  };
523760b7ff88712 Harish Bandi           2019-04-26  1724  

:::::: The code at line 1692 was first introduced by commit
:::::: 523760b7ff8871281aaedc44c305926469ab47f8 Bluetooth: hci_qca: Added support for WCN3998

:::::: TO: Harish Bandi <c-hbandi@codeaurora.org>
:::::: CC: Marcel Holtmann <marcel@holtmann.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990'
@ 2020-07-05  1:28 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2020-07-05  1:28 UTC (permalink / raw)
  To: Rocky Liao; +Cc: kbuild-all, clang-built-linux, linux-kernel, Marcel Holtmann

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

Hi Rocky,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   35e884f89df4c48566d745dc5a97a0d058d04263
commit: e5d6468fe9d8dced9af0c548a359a7dbeb31c931 Bluetooth: hci_qca: Add support for Qualcomm Bluetooth SoC QCA6390
date:   3 months ago
config: x86_64-randconfig-a001-20200705 (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project e359ab1eca5727ce4c688bb49323b8a09478d61c)
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
        git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        # 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/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3990 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1703:35: warning: unused variable 'qca_soc_data_wcn3991' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3991 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1714:35: warning: unused variable 'qca_soc_data_wcn3998' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3998 = {
                                     ^
   3 warnings generated.

vim +/qca_soc_data_wcn3990 +1692 drivers/bluetooth/hci_qca.c

0ff252c1976da5 Ben Young Tae Kim      2015-08-10  1691  
523760b7ff8871 Harish Bandi           2019-04-26 @1692  static const struct qca_vreg_data qca_soc_data_wcn3990 = {
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1693  	.soc_type = QCA_WCN3990,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1694  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1695  		{ "vddio", 15000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1696  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1697  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1698  		{ "vddch0", 450000 },
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1699  	},
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1700  	.num_vregs = 4,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1701  };
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1702  
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06 @1703  static const struct qca_vreg_data qca_soc_data_wcn3991 = {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1704  	.soc_type = QCA_WCN3991,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1705  	.vregs = (struct qca_vreg []) {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1706  		{ "vddio", 15000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1707  		{ "vddxo", 80000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1708  		{ "vddrf", 300000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1709  		{ "vddch0", 450000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1710  	},
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1711  	.num_vregs = 4,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1712  };
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1713  
523760b7ff8871 Harish Bandi           2019-04-26 @1714  static const struct qca_vreg_data qca_soc_data_wcn3998 = {
523760b7ff8871 Harish Bandi           2019-04-26  1715  	.soc_type = QCA_WCN3998,
523760b7ff8871 Harish Bandi           2019-04-26  1716  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1717  		{ "vddio", 10000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1718  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1719  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1720  		{ "vddch0", 450000 },
523760b7ff8871 Harish Bandi           2019-04-26  1721  	},
523760b7ff8871 Harish Bandi           2019-04-26  1722  	.num_vregs = 4,
523760b7ff8871 Harish Bandi           2019-04-26  1723  };
523760b7ff8871 Harish Bandi           2019-04-26  1724  

:::::: The code at line 1692 was first introduced by commit
:::::: 523760b7ff8871281aaedc44c305926469ab47f8 Bluetooth: hci_qca: Added support for WCN3998

:::::: TO: Harish Bandi <c-hbandi@codeaurora.org>
:::::: CC: Marcel Holtmann <marcel@holtmann.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990'
@ 2020-06-29 15:44 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2020-06-29 15:44 UTC (permalink / raw)
  To: Rocky Liao; +Cc: kbuild-all, clang-built-linux, linux-kernel, Marcel Holtmann

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   9ebcfadb0610322ac537dd7aa5d9cbc2b2894c68
commit: e5d6468fe9d8dced9af0c548a359a7dbeb31c931 Bluetooth: hci_qca: Add support for Qualcomm Bluetooth SoC QCA6390
date:   3 months ago
config: arm-randconfig-r012-20200629 (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project a28d38a6bca1726d56c9b373f4c7dc5264fc7716)
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 arm cross compiling tool for clang build
        # apt-get install binutils-arm-linux-gnueabi
        git checkout e5d6468fe9d8dced9af0c548a359a7dbeb31c931
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm 

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/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3990 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1703:35: warning: unused variable 'qca_soc_data_wcn3991' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3991 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1714:35: warning: unused variable 'qca_soc_data_wcn3998' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_wcn3998 = {
                                     ^
>> drivers/bluetooth/hci_qca.c:1725:35: warning: unused variable 'qca_soc_data_qca6390' [-Wunused-const-variable]
   static const struct qca_vreg_data qca_soc_data_qca6390 = {
                                     ^
   4 warnings generated.

vim +/qca_soc_data_wcn3990 +1692 drivers/bluetooth/hci_qca.c

0ff252c1976da5 Ben Young Tae Kim      2015-08-10  1691  
523760b7ff8871 Harish Bandi           2019-04-26 @1692  static const struct qca_vreg_data qca_soc_data_wcn3990 = {
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1693  	.soc_type = QCA_WCN3990,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1694  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1695  		{ "vddio", 15000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1696  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1697  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1698  		{ "vddch0", 450000 },
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1699  	},
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1700  	.num_vregs = 4,
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1701  };
fa9ad876b8e0eb Balakrishna Godavarthi 2018-08-03  1702  
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06 @1703  static const struct qca_vreg_data qca_soc_data_wcn3991 = {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1704  	.soc_type = QCA_WCN3991,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1705  	.vregs = (struct qca_vreg []) {
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1706  		{ "vddio", 15000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1707  		{ "vddxo", 80000  },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1708  		{ "vddrf", 300000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1709  		{ "vddch0", 450000 },
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1710  	},
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1711  	.num_vregs = 4,
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1712  };
7d250a062f75e6 Balakrishna Godavarthi 2019-11-06  1713  
523760b7ff8871 Harish Bandi           2019-04-26 @1714  static const struct qca_vreg_data qca_soc_data_wcn3998 = {
523760b7ff8871 Harish Bandi           2019-04-26  1715  	.soc_type = QCA_WCN3998,
523760b7ff8871 Harish Bandi           2019-04-26  1716  	.vregs = (struct qca_vreg []) {
f2edd66e515b99 Bjorn Andersson        2019-10-17  1717  		{ "vddio", 10000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1718  		{ "vddxo", 80000  },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1719  		{ "vddrf", 300000 },
f2edd66e515b99 Bjorn Andersson        2019-10-17  1720  		{ "vddch0", 450000 },
523760b7ff8871 Harish Bandi           2019-04-26  1721  	},
523760b7ff8871 Harish Bandi           2019-04-26  1722  	.num_vregs = 4,
523760b7ff8871 Harish Bandi           2019-04-26  1723  };
523760b7ff8871 Harish Bandi           2019-04-26  1724  
e5d6468fe9d8dc Rocky Liao             2020-03-25 @1725  static const struct qca_vreg_data qca_soc_data_qca6390 = {
e5d6468fe9d8dc Rocky Liao             2020-03-25  1726  	.soc_type = QCA_QCA6390,
e5d6468fe9d8dc Rocky Liao             2020-03-25  1727  	.num_vregs = 0,
e5d6468fe9d8dc Rocky Liao             2020-03-25  1728  };
e5d6468fe9d8dc Rocky Liao             2020-03-25  1729  

:::::: The code at line 1692 was first introduced by commit
:::::: 523760b7ff8871281aaedc44c305926469ab47f8 Bluetooth: hci_qca: Added support for WCN3998

:::::: TO: Harish Bandi <c-hbandi@codeaurora.org>
:::::: CC: Marcel Holtmann <marcel@holtmann.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-11-06  5:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-29 17:35 drivers/bluetooth/hci_qca.c:1692:35: warning: unused variable 'qca_soc_data_wcn3990' kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2021-11-06  5:14 kernel test robot
2021-05-03 23:02 kernel test robot
2020-09-13 11:59 kernel test robot
2020-09-10 18:41 kernel test robot
2020-07-05  1:28 kernel test robot
2020-06-29 15:44 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;
as well as URLs for NNTP newsgroup(s).