public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Joseph Hwang <josephsih@chromium.org>,
	linux-bluetooth@vger.kernel.org, marcel@holtmann.org,
	luiz.dentz@gmail.com, pali@kernel.org
Cc: kbuild-all@lists.01.org,
	chromeos-bluetooth-upstreaming@chromium.org,
	josephsih@google.com, Joseph Hwang <josephsih@chromium.org>,
	Miao-chen Chou <mcchou@chromium.org>,
	Johan Hedberg <johan.hedberg@gmail.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 3/3] Bluetooth: btrtl: Set up Realtek 8822CE for Android BQR commands
Date: Thu, 9 Sep 2021 17:40:48 +0800	[thread overview]
Message-ID: <202109091748.CWZLMWqf-lkp@intel.com> (raw)
In-Reply-To: <20210908191915.v2.3.Ic8dcac2622d16775748f9d36c0a5e893372aa48d@changeid>

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

Hi Joseph,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on bluetooth-next/master]
[also build test ERROR on next-20210909]
[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]

url:    https://github.com/0day-ci/linux/commits/Joseph-Hwang/Bluetooth-btandroid-Support-Android-Bluetooth-Quality-Report/20210908-192118
base:   https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git master
config: i386-randconfig-f003-20200320 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/3723e13da0251e3fbea4781ce1e4f917301b0bb5
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Joseph-Hwang/Bluetooth-btandroid-Support-Android-Bluetooth-Quality-Report/20210908-192118
        git checkout 3723e13da0251e3fbea4781ce1e4f917301b0bb5
        # save the attached .config to linux build tree
        mkdir build_dir
        make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

   ld: drivers/bluetooth/hci_qca.o: in function `qca_setup':
   drivers/bluetooth/hci_qca.c:1734: undefined reference to `btandroid_set_quality_report'
   ld: drivers/bluetooth/btrtl.o: in function `btrtl_set_quirks':
>> drivers/bluetooth/btrtl.c:750: undefined reference to `btandroid_set_quality_report'


vim +750 drivers/bluetooth/btrtl.c

   733	
   734	void btrtl_set_quirks(struct hci_dev *hdev, struct btrtl_device_info *btrtl_dev)
   735	{
   736		/* Enable controller to do both LE scan and BR/EDR inquiry
   737		 * simultaneously.
   738		 */
   739		set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
   740	
   741		/* Enable central-peripheral role (able to create new connections with
   742		 * an existing connection in slave role).
   743		 */
   744		/* Enable WBS and quality report supported by the specific devices. */
   745		switch (btrtl_dev->project_id) {
   746		case CHIP_ID_8822C:
   747		case CHIP_ID_8852A:
   748			set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks);
   749			set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks);
 > 750			hdev->set_quality_report = btandroid_set_quality_report;
   751			break;
   752		default:
   753			rtl_dev_dbg(hdev, "Central-peripheral role not enabled.");
   754			rtl_dev_dbg(hdev, "WBS supported not enabled.");
   755			break;
   756		}
   757	}
   758	EXPORT_SYMBOL_GPL(btrtl_set_quirks);
   759	

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

  reply	other threads:[~2021-09-09  9:41 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-08 11:19 [PATCH v2 1/3] Bluetooth: btandroid: Support Android Bluetooth Quality Report Joseph Hwang
2021-09-08 11:19 ` [PATCH v2 2/3] Bluetooth: hci_qca: Set up Qualcomm WCN399x for Android BQR commands Joseph Hwang
2021-09-09  2:27   ` kernel test robot
2021-09-09  4:20   ` kernel test robot
2021-09-09  6:14   ` kernel test robot
2021-09-08 11:19 ` [PATCH v2 3/3] Bluetooth: btrtl: Set up Realtek 8822CE " Joseph Hwang
2021-09-09  9:40   ` kernel test robot [this message]
2021-09-08 11:57 ` [v2,1/3] Bluetooth: btandroid: Support Android Bluetooth Quality Report bluez.test.bot

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=202109091748.CWZLMWqf-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=chromeos-bluetooth-upstreaming@chromium.org \
    --cc=johan.hedberg@gmail.com \
    --cc=josephsih@chromium.org \
    --cc=josephsih@google.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    --cc=marcel@holtmann.org \
    --cc=mcchou@chromium.org \
    --cc=pali@kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox