[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <B7F47DB8-B3B9-4F20-9DA1-3756B20ED866@holtmann.org>
Date: Tue, 14 Aug 2018 09:00:43 +0200
From: Marcel Holtmann <marcel@...tmann.org>
To: Ian W MORRISON <ianwmorrison@...il.com>
Cc: Johan Hedberg <johan.hedberg@...il.com>,
"open list:BLUETOOTH DRIVERS" <linux-bluetooth@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
hdegoede@...hat.com
Subject: Re: [PATCH] Use default .cfg file name for RTL8723BS devices with id
of OBDA8723
Hi Ian,
> For RTL8723BS devices the current config file name is a composite of
> both the config name (rtl8723bs) and a postfix of the device-id.
>
> Given the majority of RTL8723BS devices use a device-id of OBDA8723
> this simplifies the config file name to use "rtl8723bs_config.bin"
> as a default of for these devices.
>
> Signed-off-by: Ian W MORRISON <ianwmorrison@...il.com>
> ---
> drivers/bluetooth/hci_h5.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c
> index 8eede1197cd2..cce422dc1b8d 100644
> --- a/drivers/bluetooth/hci_h5.c
> +++ b/drivers/bluetooth/hci_h5.c
> @@ -852,7 +852,9 @@ static int h5_btrtl_setup(struct h5 *h5)
> bool flow_control;
> int err;
>
> - btrtl_dev = btrtl_initialize(h5->hu->hdev, h5->id);
> + btrtl_dev = strcmp("OBDA8723", h5->id) ?
> + btrtl_initialize(h5->hu->hdev, h5->id) :
> + btrtl_initialize(h5->hu->hdev, NULL);
I am not letting you duplicate the PNPID here. This needs to be done cleanly with the device table that is already present.
Regards
Marcel
Powered by blists - more mailing lists