All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: panel: Unnecessary space
@ 2014-03-29 18:08 paulmcquad
  2014-03-31  9:04 ` Dan Carpenter
  0 siblings, 1 reply; 2+ messages in thread
From: paulmcquad @ 2014-03-29 18:08 UTC (permalink / raw)
  To: linux-kernel, devel, arnd, gregkh, jake.champlin.27

>From 411c46d97c06fba1e45312342fa1618eef8429cd Mon Sep 17 00:00:00 2001
From: Paul McQuade <paulmcquad@gmail.com>
Date: Sat, 29 Mar 2014 18:01:19 +0000
Subject: [PATCH] Staging: panel: Unnecessary space

Removed space after function pointer name

Signed-off-by: Paul McQuade <paulmcquad@gmail.com>
---
 drivers/staging/panel/panel.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/panel.c
index ec4b1fd..35e00f0 100644
--- a/drivers/staging/panel/panel.c
+++ b/drivers/staging/panel/panel.c
@@ -171,8 +171,8 @@ struct logical_input {
 
     union {
         struct {    /* valid when type == INPUT_TYPE_STD */
-            void (*press_fct) (int);
-            void (*release_fct) (int);
+            void (*press_fct)(int);
+            void (*release_fct)(int);
             int press_data;
             int release_data;
         } std;
@@ -417,9 +417,9 @@ static char lcd_must_clear;
 static char lcd_left_shift;
 static char init_in_progress;
 
-static void (*lcd_write_cmd) (int);
-static void (*lcd_write_data) (int);
-static void (*lcd_clear_fast) (void);
+static void (*lcd_write_cmd)(int);
+static void (*lcd_write_data)(int);
+static void (*lcd_clear_fast)(void);
 
 static DEFINE_SPINLOCK(pprt_lock);
 static struct timer_list scan_timer;
@@ -2017,9 +2017,9 @@ static struct logical_input *panel_bind_key(const char *name, const char *press,
  * be bound.
  */
 static struct logical_input *panel_bind_callback(char *name,
-                         void (*press_fct) (int),
+                         void (*press_fct)(int),
                          int press_data,
-                         void (*release_fct) (int),
+                         void (*release_fct)(int),
                          int release_data)
 {
     struct logical_input *callback;
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Staging: panel: Unnecessary space
  2014-03-29 18:08 [PATCH] Staging: panel: Unnecessary space paulmcquad
@ 2014-03-31  9:04 ` Dan Carpenter
  0 siblings, 0 replies; 2+ messages in thread
From: Dan Carpenter @ 2014-03-31  9:04 UTC (permalink / raw)
  To: paulmcquad; +Cc: linux-kernel, devel, arnd, gregkh, jake.champlin.27

Doesn't apply.

regards,
dan carpenter



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-03-31  9:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-29 18:08 [PATCH] Staging: panel: Unnecessary space paulmcquad
2014-03-31  9:04 ` Dan Carpenter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.