Bluetooth: hci_qca: mark OF related data as maybe unused

Message ID 20230412-bluetooth-v1-1-377b9bf7b08e@kali.org
State New
Headers
Series Bluetooth: hci_qca: mark OF related data as maybe unused |

Commit Message

Steev Klimaszewski April 12, 2023, 11:58 p.m. UTC
  The driver can be compile tested with !CONFIG_OF making certain data
unused.

Signed-off-by: Steev Klimaszewski <steev@kali.org>
---
There was a patch to mark OF related data as maybe unused in flight when
I was doing my bluetooth driver work and I didn't notice it.  Since I
don't build on !CONFIG_OF systems, I hadn't seen the warning.  This
patch simply marks our data as maybe unused as well.
---
 drivers/bluetooth/hci_qca.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---
base-commit: 7d8214bba44c1aa6a75921a09a691945d26a8d43
change-id: 20230412-bluetooth-c7590ef622d3

Best regards,
  

Comments

patchwork-bot+bluetooth@kernel.org April 14, 2023, 8:10 p.m. UTC | #1
Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Wed, 12 Apr 2023 18:58:17 -0500 you wrote:
> The driver can be compile tested with !CONFIG_OF making certain data
> unused.
> 
> Signed-off-by: Steev Klimaszewski <steev@kali.org>
> ---
> There was a patch to mark OF related data as maybe unused in flight when
> I was doing my bluetooth driver work and I didn't notice it.  Since I
> don't build on !CONFIG_OF systems, I hadn't seen the warning.  This
> patch simply marks our data as maybe unused as well.
> 
> [...]

Here is the summary with links:
  - Bluetooth: hci_qca: mark OF related data as maybe unused
    https://git.kernel.org/bluetooth/bluetooth-next/c/875d76c2f7c1

You are awesome, thank you!
  

Patch

diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c
index 1597797ff169..1b064504b388 100644
--- a/drivers/bluetooth/hci_qca.c
+++ b/drivers/bluetooth/hci_qca.c
@@ -1891,7 +1891,7 @@  static const struct qca_device_data qca_soc_data_wcn6750 __maybe_unused = {
 	.capabilities = QCA_CAP_WIDEBAND_SPEECH | QCA_CAP_VALID_LE_STATES,
 };
 
-static const struct qca_device_data qca_soc_data_wcn6855 = {
+static const struct qca_device_data qca_soc_data_wcn6855 __maybe_unused = {
 	.soc_type = QCA_WCN6855,
 	.vregs = (struct qca_vreg []) {
 		{ "vddio", 5000 },