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
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