* [PATCH v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl
@ 2024-04-02 18:37 me
2024-04-02 20:10 ` Uri Arev
2024-04-04 16:30 ` patchwork-bot+bluetooth
0 siblings, 2 replies; 4+ messages in thread
From: me @ 2024-04-02 18:37 UTC (permalink / raw)
Cc: me, Luiz Augusto von Dentz, Marcel Holtmann, linux-bluetooth,
linux-kernel
From: Uri Arev <me@wantyapps.xyz>
This fixes the following CHECKs, WARNINGs, and ERRORs reported in
hci_intel.c
Reported by checkpatch.pl:
-----------
hci_intel.c
-----------
WARNING: Prefer using '"%s...", __func__' to using 'intel_setup', this
function's name, in a string
+ bt_dev_dbg(hdev, "start intel_setup");
ERROR: code indent should use tabs where possible
+ /* Check for supported iBT hardware variants of this firmware$
ERROR: code indent should use tabs where possible
+ * loading method.$
ERROR: code indent should use tabs where possible
+ *$
ERROR: code indent should use tabs where possible
+ * This check has been put in place to ensure correct forward$
ERROR: code indent should use tabs where possible
+ * compatibility options when newer hardware variants come along.$
ERROR: code indent should use tabs where possible
+ */$
CHECK: No space is necessary after a cast
+ duration = (unsigned long long) ktime_to_ns(delta) >> 10;
CHECK: No space is necessary after a cast
+ duration = (unsigned long long) ktime_to_ns(delta) >> 10;
WARNING: Missing a blank line after declarations
+ int err = PTR_ERR(intel->rx_skb);
+ bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Signed-off-by: Uri Arev <me@wantyapps.xyz>
Suggested-by: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
---
Changes in v2:
Changed bt_dev_dbg(hdev, "start intel_setup"); to bt_dev_dbg(hdev, "");
as suggested by Luiz Augusto von Dentz
---
drivers/bluetooth/hci_intel.c | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/drivers/bluetooth/hci_intel.c b/drivers/bluetooth/hci_intel.c
index 78afb9a348e7..53e394676f6b 100644
--- a/drivers/bluetooth/hci_intel.c
+++ b/drivers/bluetooth/hci_intel.c
@@ -537,7 +537,7 @@ static int intel_setup(struct hci_uart *hu)
int speed_change = 0;
int err;
- bt_dev_dbg(hdev, "start intel_setup");
+ bt_dev_dbg(hdev, "");
hu->hdev->set_diag = btintel_set_diag;
hu->hdev->set_bdaddr = btintel_set_bdaddr;
@@ -591,12 +591,12 @@ static int intel_setup(struct hci_uart *hu)
return -EINVAL;
}
- /* Check for supported iBT hardware variants of this firmware
- * loading method.
- *
- * This check has been put in place to ensure correct forward
- * compatibility options when newer hardware variants come along.
- */
+ /* Check for supported iBT hardware variants of this firmware
+ * loading method.
+ *
+ * This check has been put in place to ensure correct forward
+ * compatibility options when newer hardware variants come along.
+ */
switch (ver.hw_variant) {
case 0x0b: /* LnP */
case 0x0c: /* WsP */
@@ -777,7 +777,7 @@ static int intel_setup(struct hci_uart *hu)
rettime = ktime_get();
delta = ktime_sub(rettime, calltime);
- duration = (unsigned long long) ktime_to_ns(delta) >> 10;
+ duration = (unsigned long long)ktime_to_ns(delta) >> 10;
bt_dev_info(hdev, "Firmware loaded in %llu usecs", duration);
@@ -822,7 +822,7 @@ static int intel_setup(struct hci_uart *hu)
rettime = ktime_get();
delta = ktime_sub(rettime, calltime);
- duration = (unsigned long long) ktime_to_ns(delta) >> 10;
+ duration = (unsigned long long)ktime_to_ns(delta) >> 10;
bt_dev_info(hdev, "Device booted in %llu usecs", duration);
@@ -977,6 +977,7 @@ static int intel_recv(struct hci_uart *hu, const void *data, int count)
ARRAY_SIZE(intel_recv_pkts));
if (IS_ERR(intel->rx_skb)) {
int err = PTR_ERR(intel->rx_skb);
+
bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
intel->rx_skb = NULL;
return err;
--
2.44.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl
2024-04-02 18:37 [PATCH v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl me
@ 2024-04-02 20:10 ` Uri Arev
2024-04-03 20:38 ` Uri Arev
2024-04-04 16:30 ` patchwork-bot+bluetooth
1 sibling, 1 reply; 4+ messages in thread
From: Uri Arev @ 2024-04-02 20:10 UTC (permalink / raw)
To: Luiz Augusto von Dentz, Marcel Holtmann, linux-bluetooth,
linux-kernel
Hey, it seems that the CheckSmatch test has failed for this revision (v2)
and the first version of this patch as well. I checked lore.kernel.org
and patchwork.kernel.org and it seems that the test has failed multiple
times for multiple unrelated patches. Is this a problem that can safely
be ignored?
Uri Arev
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl
2024-04-02 20:10 ` Uri Arev
@ 2024-04-03 20:38 ` Uri Arev
0 siblings, 0 replies; 4+ messages in thread
From: Uri Arev @ 2024-04-03 20:38 UTC (permalink / raw)
To: Luiz Augusto von Dentz, Marcel Holtmann, linux-bluetooth,
linux-kernel
On Tue, Apr 02, 2024 at 11:10:16PM +0300, Uri Arev wrote:
> Hey, it seems that the CheckSmatch test has failed for this revision (v2)
> and the first version of this patch as well. I checked lore.kernel.org
> and patchwork.kernel.org and it seems that the test has failed multiple
> times for multiple unrelated patches. Is this a problem that can safely
> be ignored?
>
> Uri Arev
>
Hey Luiz, Sorry I am bothering you. Did you get my previous emails? I
fixed `__func__` as per your suggestion and added the tag.
Uri Arev
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl
2024-04-02 18:37 [PATCH v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl me
2024-04-02 20:10 ` Uri Arev
@ 2024-04-04 16:30 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2024-04-04 16:30 UTC (permalink / raw)
To: Uri Arev; +Cc: luiz.dentz, marcel, linux-bluetooth, linux-kernel
Hello:
This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Tue, 2 Apr 2024 21:37:45 +0300 you wrote:
> From: Uri Arev <me@wantyapps.xyz>
>
> This fixes the following CHECKs, WARNINGs, and ERRORs reported in
> hci_intel.c
>
> Reported by checkpatch.pl:
>
> [...]
Here is the summary with links:
- [v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl
https://git.kernel.org/bluetooth/bluetooth-next/c/54b53156ad36
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-04-04 16:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-02 18:37 [PATCH v2] Bluetooth: hci_intel: Fix multiple issues reported by checkpatch.pl me
2024-04-02 20:10 ` Uri Arev
2024-04-03 20:38 ` Uri Arev
2024-04-04 16:30 ` patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox