2015-07-23 11:22:56

by Mutharaju, Prasanna (P.)

[permalink] [raw]
Subject: [PATCH] Bluetooth:hci_h5: Cleaned up coding style warnings

From: Prasanna Karthik <[email protected]>

Cleanedup "Unnecessary space before function pointer arguments" warning
reported by Checkpatch

Signed-off-by: Prasanna Karthik <[email protected]>
---
drivers/bluetooth/hci_h5.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c
index 3455cec..b35b238 100644
--- a/drivers/bluetooth/hci_h5.c
+++ b/drivers/bluetooth/hci_h5.c
@@ -75,7 +75,7 @@ struct h5 {
size_t rx_pending; /* Expecting more bytes */
u8 rx_ack; /* Last ack number received */
=20
- int (*rx_func) (struct hci_uart *hu, u8 c);
+ int (*rx_func)(struct hci_uart *hu, u8 c);
=20
struct timer_list timer; /* Retransmission timer */
=20
--=20
1.7.0.4


2015-07-27 07:32:21

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] Bluetooth:hci_h5: Cleaned up coding style warnings

Hi Prasanna,

On Thu, Jul 23, 2015, Mutharaju, Prasanna (P.) wrote:
> From: Prasanna Karthik <[email protected]>
>
> Cleanedup "Unnecessary space before function pointer arguments" warning
> reported by Checkpatch
>
> Signed-off-by: Prasanna Karthik <[email protected]>
> ---
> drivers/bluetooth/hci_h5.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)

Applied to bluetooth-next. Thanks.

Johan