[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <202511202234.PN8Zn4v7-lkp@intel.com>
Date: Thu, 20 Nov 2025 22:46:25 +0800
From: kernel test robot <lkp@...el.com>
To: Neeraj Sanjay Kale <neeraj.sanjaykale@....com>, marcel@...tmann.org,
luiz.dentz@...il.com
Cc: oe-kbuild-all@...ts.linux.dev, linux-bluetooth@...r.kernel.org,
linux-kernel@...r.kernel.org, amitkumar.karwar@....com,
sherry.sun@....com, dmitrii.lebed@....com,
neeraj.sanjaykale@....com
Subject: Re: [PATCH v1 07/11] Bluetooth: btnxpuart: Add device authentication
Hi Neeraj,
kernel test robot noticed the following build warnings:
[auto build test WARNING on bluetooth/master]
[also build test WARNING on bluetooth-next/master linus/master v6.18-rc6]
[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/Neeraj-Sanjay-Kale/Bluetooth-btnxpuart-Add-firmware-metadata-parsing-for-secure-interface/20251118-223605
base: https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git master
patch link: https://lore.kernel.org/r/20251118142025.1982263-8-neeraj.sanjaykale%40nxp.com
patch subject: [PATCH v1 07/11] Bluetooth: btnxpuart: Add device authentication
config: i386-randconfig-061-20251120 (https://download.01.org/0day-ci/archive/20251120/202511202234.PN8Zn4v7-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251120/202511202234.PN8Zn4v7-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202511202234.PN8Zn4v7-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
drivers/bluetooth/btnxpuart.c:1433:55: sparse: sparse: restricted __le32 degrades to integer
drivers/bluetooth/btnxpuart.c:1441:27: sparse: sparse: restricted __le32 degrades to integer
drivers/bluetooth/btnxpuart.c:1446:47: sparse: sparse: restricted __le32 degrades to integer
drivers/bluetooth/btnxpuart.c:1447:32: sparse: sparse: restricted __le32 degrades to integer
drivers/bluetooth/btnxpuart.c:1450:26: sparse: sparse: restricted __le32 degrades to integer
drivers/bluetooth/btnxpuart.c:1529:17: sparse: sparse: restricted __le32 degrades to integer
>> drivers/bluetooth/btnxpuart.c:1758:64: sparse: sparse: incorrect type in argument 2 (different base types) @@ expected unsigned short [usertype] chipid @@ got restricted __le16 const [usertype] chip_id @@
drivers/bluetooth/btnxpuart.c:1758:64: sparse: expected unsigned short [usertype] chipid
drivers/bluetooth/btnxpuart.c:1758:64: sparse: got restricted __le16 const [usertype] chip_id
>> drivers/bluetooth/btnxpuart.c:1759:58: sparse: sparse: incorrect type in argument 3 (different base types) @@ expected unsigned char [usertype] loader_ver @@ got restricted __le16 const [usertype] device_flags @@
drivers/bluetooth/btnxpuart.c:1759:58: sparse: expected unsigned char [usertype] loader_ver
drivers/bluetooth/btnxpuart.c:1759:58: sparse: got restricted __le16 const [usertype] device_flags
>> drivers/bluetooth/btnxpuart.c:2114:25: sparse: sparse: incorrect type in initializer (different base types) @@ expected restricted __le16 [usertype] len @@ got unsigned short [usertype] @@
drivers/bluetooth/btnxpuart.c:2114:25: sparse: expected restricted __le16 [usertype] len
drivers/bluetooth/btnxpuart.c:2114:25: sparse: got unsigned short [usertype]
drivers/bluetooth/btnxpuart.c:2186:25: sparse: sparse: incorrect type in initializer (different base types) @@ expected restricted __le16 [usertype] len @@ got unsigned short [usertype] @@
drivers/bluetooth/btnxpuart.c:2186:25: sparse: expected restricted __le16 [usertype] len
drivers/bluetooth/btnxpuart.c:2186:25: sparse: got unsigned short [usertype]
vim +1758 drivers/bluetooth/btnxpuart.c
1746
1747 /* Secure Interface */
1748 static int nxp_get_pub_key(struct hci_dev *hdev,
1749 const struct nxp_tls_device_info *device_info,
1750 u8 ecdsa_pub_key[NXP_FW_ECDSA_PUBKEY_SIZE])
1751 {
1752 struct btnxpuart_dev *nxpdev = hci_get_drvdata(hdev);
1753 const char *fw_name;
1754
1755 if (ecdsa_pub_key[0] == 0x04)
1756 return 0;
1757
> 1758 fw_name = nxp_get_fw_name_from_chipid(hdev, device_info->chip_id,
> 1759 device_info->device_flags);
1760 if (nxp_request_firmware(hdev, fw_name, NULL))
1761 return -ENOENT;
1762
1763 nxp_process_fw_meta_data(hdev, nxpdev->fw);
1764 release_firmware(nxpdev->fw);
1765 memset(nxpdev->fw_name, 0, sizeof(nxpdev->fw_name));
1766
1767 if (memcmp(nxpdev->crypto.fw_uuid, device_info->uuid, 16) ||
1768 nxpdev->crypto.ecdsa_public[0] != 0x04) {
1769 bt_dev_err(hdev,
1770 "UUID check failed while trying to read ECDSA public key from FW.");
1771 return -EBADF;
1772 }
1773
1774 memcpy(ecdsa_pub_key, nxpdev->crypto.ecdsa_public, 65);
1775
1776 return 0;
1777 }
1778
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists