* Re: [PATCH v1] Bluetooth: HCI: Remove HCI_AMP support
[not found] <20240506223758.460710-1-luiz.dentz@gmail.com>
@ 2024-05-07 1:44 ` kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2024-05-07 1:44 UTC (permalink / raw)
To: Luiz Augusto von Dentz, linux-bluetooth; +Cc: llvm, oe-kbuild-all
Hi Luiz,
kernel test robot noticed the following build errors:
[auto build test ERROR on next-20240506]
[cannot apply to v6.9-rc7 v6.9-rc6 v6.9-rc5 linus/master v6.9-rc7]
[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/Luiz-Augusto-von-Dentz/Bluetooth-HCI-Remove-HCI_AMP-support/20240507-063936
base: next-20240506
patch link: https://lore.kernel.org/r/20240506223758.460710-1-luiz.dentz%40gmail.com
patch subject: [PATCH v1] Bluetooth: HCI: Remove HCI_AMP support
config: arm-defconfig (https://download.01.org/0day-ci/archive/20240507/202405070914.iRNrUUQb-lkp@intel.com/config)
compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project.git f28c006a5895fc0e329fe15fead81e37457cb1d1)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240507/202405070914.iRNrUUQb-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@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202405070914.iRNrUUQb-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/bluetooth/btmrvl_main.c:682:8: error: no member named 'dev_type' in 'struct hci_dev'
hdev->dev_type = priv->btmrvl_dev.dev_type;
~~~~ ^
1 error generated.
vim +682 drivers/bluetooth/btmrvl_main.c
132ff4e5fa8dfb Bing Zhao 2009-06-02 656
64061607eab7cb Bing Zhao 2010-03-03 657 int btmrvl_register_hdev(struct btmrvl_private *priv)
132ff4e5fa8dfb Bing Zhao 2009-06-02 658 {
132ff4e5fa8dfb Bing Zhao 2009-06-02 659 struct hci_dev *hdev = NULL;
70a7808b50b119 Abhishek Pandit-Subedi 2020-06-10 660 struct btmrvl_sdio_card *card = priv->btmrvl_dev.card;
132ff4e5fa8dfb Bing Zhao 2009-06-02 661 int ret;
132ff4e5fa8dfb Bing Zhao 2009-06-02 662
132ff4e5fa8dfb Bing Zhao 2009-06-02 663 hdev = hci_alloc_dev();
132ff4e5fa8dfb Bing Zhao 2009-06-02 664 if (!hdev) {
132ff4e5fa8dfb Bing Zhao 2009-06-02 665 BT_ERR("Can not allocate HCI device");
132ff4e5fa8dfb Bing Zhao 2009-06-02 666 goto err_hdev;
132ff4e5fa8dfb Bing Zhao 2009-06-02 667 }
132ff4e5fa8dfb Bing Zhao 2009-06-02 668
132ff4e5fa8dfb Bing Zhao 2009-06-02 669 priv->btmrvl_dev.hcidev = hdev;
155961e8001719 David Rheinsberg 2012-02-09 670 hci_set_drvdata(hdev, priv);
132ff4e5fa8dfb Bing Zhao 2009-06-02 671
c13854cef47510 Marcel Holtmann 2010-02-08 672 hdev->bus = HCI_SDIO;
132ff4e5fa8dfb Bing Zhao 2009-06-02 673 hdev->open = btmrvl_open;
132ff4e5fa8dfb Bing Zhao 2009-06-02 674 hdev->close = btmrvl_close;
132ff4e5fa8dfb Bing Zhao 2009-06-02 675 hdev->flush = btmrvl_flush;
132ff4e5fa8dfb Bing Zhao 2009-06-02 676 hdev->send = btmrvl_send_frame;
4b245722cabc6e Amitkumar Karwar 2013-10-01 677 hdev->setup = btmrvl_setup;
27b869f59d5d98 Amitkumar Karwar 2014-07-18 678 hdev->set_bdaddr = btmrvl_set_bdaddr;
4539ca67fe8ede Luiz Augusto von Dentz 2021-10-01 679 hdev->wakeup = btmrvl_wakeup;
70a7808b50b119 Abhishek Pandit-Subedi 2020-06-10 680 SET_HCIDEV_DEV(hdev, &card->func->dev);
64061607eab7cb Bing Zhao 2010-03-03 681
f120c6b635a62d Bing Zhao 2010-03-03 @682 hdev->dev_type = priv->btmrvl_dev.dev_type;
f120c6b635a62d Bing Zhao 2010-03-03 683
132ff4e5fa8dfb Bing Zhao 2009-06-02 684 ret = hci_register_dev(hdev);
132ff4e5fa8dfb Bing Zhao 2009-06-02 685 if (ret < 0) {
132ff4e5fa8dfb Bing Zhao 2009-06-02 686 BT_ERR("Can not register HCI device");
132ff4e5fa8dfb Bing Zhao 2009-06-02 687 goto err_hci_register_dev;
132ff4e5fa8dfb Bing Zhao 2009-06-02 688 }
132ff4e5fa8dfb Bing Zhao 2009-06-02 689
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-05-07 1:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20240506223758.460710-1-luiz.dentz@gmail.com>
2024-05-07 1:44 ` [PATCH v1] Bluetooth: HCI: Remove HCI_AMP support 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