[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1441314525-12080-1-git-send-email-vincent.stehle@laposte.net>
Date:	Thu,  3 Sep 2015 23:08:45 +0200
From:	Vincent Stehlé <vincent.stehle@...oste.net>
To:	linux-bluetooth@...r.kernel.org
Cc:	linux-kernel@...r.kernel.org,
	Vincent Stehlé <vincent.stehle@...oste.net>,
	Marcel Holtmann <marcel@...tmann.org>, trivial@...nel.org
Subject: [PATCH] Bluetooth: btintel: fix warning
Fix compilation the following compilation warning, which happens when
CONFIG_BT_INTEL is not set:
  drivers/bluetooth/btintel.h:98:13: warning: ‘btintel_version_info’
  defined but not used [-Wunused-function]
   static void btintel_version_info(struct hci_dev *hdev,
                                    struct intel_version *ver)
               ^
Signed-off-by: Vincent Stehlé <vincent.stehle@...oste.net>
Cc: Marcel Holtmann <marcel@...tmann.org>
Cc: trivial@...nel.org
---
Hi,
This warning can be seen with e.g. ARM imx_v6_v7_defconfig.
Best regards,
V. 
 drivers/bluetooth/btintel.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/bluetooth/btintel.h b/drivers/bluetooth/btintel.h
index b278d14..a49c8db 100644
--- a/drivers/bluetooth/btintel.h
+++ b/drivers/bluetooth/btintel.h
@@ -95,7 +95,8 @@ static inline void btintel_hw_error(struct hci_dev *hdev, u8 code)
 {
 }
 
-static void btintel_version_info(struct hci_dev *hdev, struct intel_version *ver)
+static inline void btintel_version_info(struct hci_dev *hdev,
+					struct intel_version *ver)
 {
 }
 
-- 
2.5.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
Powered by blists - more mailing lists
 
