From: Matthias Kaehlcke <mka@chromium.org>
To: Balakrishna Godavarthi <bgodavar@codeaurora.org>
Cc: Marcel Holtmann <marcel@holtmann.org>,
Johan Hedberg <johan.hedberg@gmail.com>,
"David S . Miller" <davem@davemloft.net>,
Loic Poulain <loic.poulain@linaro.org>,
linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org,
Brian Norris <briannorris@chromium.org>,
Dmitry Grinberg <dmitrygr@google.com>
Subject: Re: [PATCH 2/2] Bluetooth: btqcomsmd: use HCI_QUIRK_USE_BDADDR_PROPERTY
Date: Thu, 25 Oct 2018 12:03:58 -0700 [thread overview]
Message-ID: <20181025190358.GY22824@google.com> (raw)
In-Reply-To: <bff4f1b7d82e217f45273872eeffa77f@codeaurora.org>
On Thu, Oct 25, 2018 at 08:10:30PM +0530, Balakrishna Godavarthi wrote:
> Hi Matthias,
>
> On 2018-10-25 05:51, Matthias Kaehlcke wrote:
> > Use the HCI_QUIRK_USE_BDADDR_PROPERTY quirk to let the HCI
> > core handle the reading of 'local-bd-address'. With this there
> > is no need to set HCI_QUIRK_INVALID_BDADDR, the case of a
> > non-existing or invalid fwnode property is handled by the core
> > code.
> >
> > Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
> > ---
> > I couldn't actually test the changes in this driver since I
> > don't have a device with this controller. Could someone
> > from Qualcomm help with this?
> > ---
> > drivers/bluetooth/btqcomsmd.c | 28 +++-------------------------
> > 1 file changed, 3 insertions(+), 25 deletions(-)
> >
> > diff --git a/drivers/bluetooth/btqcomsmd.c
> > b/drivers/bluetooth/btqcomsmd.c
> > index 7df3eed1ef5e..e5841602c4f1 100644
> > --- a/drivers/bluetooth/btqcomsmd.c
> > +++ b/drivers/bluetooth/btqcomsmd.c
> > @@ -125,23 +125,10 @@ static int btqcomsmd_setup(struct hci_dev *hdev)
> > return PTR_ERR(skb);
> > kfree_skb(skb);
> >
> > - /* Devices do not have persistent storage for BD address. If no
> > - * BD address has been retrieved during probe, mark the device
> > - * as having an invalid BD address.
> > + /* Devices do not have persistent storage for BD address. Retrieve
> > + * it from the firmware node property.
> > */
> > - if (!bacmp(&btq->bdaddr, BDADDR_ANY)) {
> > - set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
> > - return 0;
> > - }
> > -
> > - /* When setting a configured BD address fails, mark the device
> > - * as having an invalid BD address.
> > - */
> > - err = qca_set_bdaddr_rome(hdev, &btq->bdaddr);
> > - if (err) {
> > - set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
> > - return 0;
> > - }
> > + set_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks);
> >
> > return 0;
> > }
> > @@ -169,15 +156,6 @@ static int btqcomsmd_probe(struct platform_device
> > *pdev)
> > if (IS_ERR(btq->cmd_channel))
> > return PTR_ERR(btq->cmd_channel);
> >
> > - /* The local-bd-address property is usually injected by the
> > - * bootloader which has access to the allocated BD address.
> > - */
> > - if (!of_property_read_u8_array(pdev->dev.of_node, "local-bd-address",
> > - (u8 *)&btq->bdaddr, sizeof(bdaddr_t))) {
> > - dev_info(&pdev->dev, "BD address %pMR retrieved from device-tree",
> > - &btq->bdaddr);
> > - }
> > -
> > hdev = hci_alloc_dev();
> > if (!hdev)
> > return -ENOMEM;
>
> nit: can be remove unused "bdaddr_t bdaddr" variable.
> https://elixir.bootlin.com/linux/v4.19-rc8/source/drivers/bluetooth/btqcomsmd.c#L31
> Apart from this, It looks ok to me.
Thanks for the reviews! I'll remove the field in the next revision.
prev parent reply other threads:[~2018-10-25 19:04 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-25 0:21 [PATCH 0/2] Add quirk for reading BD_ADDR from fwnode property Matthias Kaehlcke
2018-10-25 0:21 ` [PATCH 1/2] Bluetooth: " Matthias Kaehlcke
2018-10-25 14:36 ` Balakrishna Godavarthi
2018-10-26 5:01 ` Balakrishna Godavarthi
2018-10-26 17:58 ` Matthias Kaehlcke
2018-10-25 0:21 ` [PATCH 2/2] Bluetooth: btqcomsmd: use HCI_QUIRK_USE_BDADDR_PROPERTY Matthias Kaehlcke
2018-10-25 14:40 ` Balakrishna Godavarthi
2018-10-25 19:03 ` Matthias Kaehlcke [this message]
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=20181025190358.GY22824@google.com \
--to=mka@chromium.org \
--cc=bgodavar@codeaurora.org \
--cc=briannorris@chromium.org \
--cc=davem@davemloft.net \
--cc=dmitrygr@google.com \
--cc=johan.hedberg@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=loic.poulain@linaro.org \
--cc=marcel@holtmann.org \
--cc=netdev@vger.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.