mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Marcel Holtmann <marcel@holtmann.org>,
	Johan Hedberg <johan.hedberg@gmail.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Next Mailing List <linux-next@vger.kernel.org>,
	Luiz Augusto von Dentz <luiz.von.dentz@intel.com>,
	Zijun Hu <zijun.hu@oss.qualcomm.com>
Subject: linux-next: manual merge of the bluetooth tree with the origin tree
Date: Tue, 15 Sep 2026 14:47:17 +0100	[thread overview]
Message-ID: <aqlMZfcfK-y7_GX2@sirena.org.uk> (raw)

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

Hi all,

Today's linux-next merge of the bluetooth tree got a conflict in:

  drivers/bluetooth/btusb_main.c

between commits:

  f92634ad91863 ("Bluetooth: btusb: Build the driver from multiple source files")
  8b1bfabebfa40 ("Bluetooth: btusb: Add support for Qualcomm multi-subsystem QCC2072")

from the bluetooth tree and commits:

  f92634ad91863 ("Bluetooth: btusb: Build the driver from multiple source files")
  8b1bfabebfa40 ("Bluetooth: btusb: Add support for Qualcomm multi-subsystem QCC2072")

from the bluetooth tree.  Yes, that's the same two commits.  I suspect
something to do with your constant cherry picking and prior fixes having
been merged managed to generate a conflict on the source file spilt, I
imagine it's something pulled over from another file.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

diff --cc drivers/bluetooth/btusb_main.c
index 002b9f975710f,be47ac894b6cc..0000000000000
--- a/drivers/bluetooth/btusb_main.c
+++ b/drivers/bluetooth/btusb_main.c
@@@ -69,8 -71,18 +71,21 @@@ static struct usb_driver btusb_driver
  #define BTUSB_ACTIONS_SEMI		BIT(27)
  #define BTUSB_BARROT			BIT(28)
  #define BTUSB_BROKEN_EXT_SCAN		BIT(29)
++<<<<<<< HEAD:drivers/bluetooth/btusb.c
++=======
+ #define BTUSB_QUALCOMM			BIT(30)
++>>>>>>> bluetooth/master:drivers/bluetooth/btusb_main.c
  
  static const struct usb_device_id btusb_table[] = {
+ 	/*
+ 	 * NXP IW610 (0471:0215): the composite device reports Bluetooth
+ 	 * class at the whole-device level, so the generic entry below
+ 	 * would also match this WiFi vendor interface. Ignore it here
+ 	 * first so mwifiex-nxp can bind it instead.
+ 	 */
+ 	{ USB_DEVICE_AND_INTERFACE_INFO(0x0471, 0x0215, 0xff, 0xff, 0xff),
+ 	  .driver_info = BTUSB_IGNORE },
+ 
  	/* Generic Bluetooth USB device */
  	{ USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
  
@@@ -983,6 -1016,9 +1019,12 @@@ struct btqca_data 
  #define BTUSB_HW_SSR_ACTIVE	17
  #define BTUSB_WAKEUP_BROKEN	18
  #define BTUSB_RESET		19
++<<<<<<< HEAD:drivers/bluetooth/btusb.c
++=======
+ 
+ #define BTUSB_PROTO_LEGACY	0x00
+ #define BTUSB_PROTO_H4		0x01
++>>>>>>> bluetooth/master:drivers/bluetooth/btusb_main.c
  
  struct btusb_data {
  	struct hci_dev       *hdev;
diff --cc net/bluetooth/hci_sync.c
index 2a651a4d60e64,51d03cd3c963a..0000000000000
--- a/net/bluetooth/hci_sync.c
+++ b/net/bluetooth/hci_sync.c
diff --cc net/bluetooth/l2cap_core.c
index 644e31160d55b,a22edd2baf5e5..0000000000000
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@@ -3900,7 -4009,8 +4009,11 @@@ static void l2cap_ecred_rsp_defer(struc
  	struct l2cap_ecred_rsp_data *rsp = data;
  	struct l2cap_ecred_conn_rsp *rsp_flex =
  		container_of(&rsp->pdu.rsp, struct l2cap_ecred_conn_rsp, hdr);
+ 	bool locked;
+ 
++	if (chan->mode != L2CAP_MODE_EXT_FLOWCTL)
++		return;
 +
  	if (chan->mode != L2CAP_MODE_EXT_FLOWCTL)
  		return;
  

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

             reply	other threads:[~2026-09-15 13:47 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-15 13:47 Mark Brown [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-08-05 14:36 Mark Brown
2026-08-05 14:35 Mark Brown
2026-07-28 16:26 Mark Brown
2026-07-17 14:37 Mark Brown
2026-06-01 14:48 Mark Brown
2026-05-18 12:47 Mark Brown
2026-03-12 13:14 Mark Brown
2025-09-22  9:23 Mark Brown
2025-09-17 11:34 Mark Brown
2023-04-17 14:36 broonie

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=aqlMZfcfK-y7_GX2@sirena.org.uk \
    --to=broonie@kernel.org \
    --cc=johan.hedberg@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-next@vger.kernel.org \
    --cc=luiz.von.dentz@intel.com \
    --cc=marcel@holtmann.org \
    --cc=zijun.hu@oss.qualcomm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®