public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: paulmcquad <paulmcquad@gmail.com>
To: linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org,
	arnd@arndb.de, gregkh@linuxfoundation.org,
	jake.champlin.27@gmail.com
Subject: [PATCH] Staging: panel: Unnecessary space
Date: Sat, 29 Mar 2014 18:08:40 +0000	[thread overview]
Message-ID: <53370C28.4020604@gmail.com> (raw)

>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


             reply	other threads:[~2014-03-29 18:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-29 18:08 paulmcquad [this message]
2014-03-31  9:04 ` [PATCH] Staging: panel: Unnecessary space Dan Carpenter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53370C28.4020604@gmail.com \
    --to=paulmcquad@gmail.com \
    --cc=arnd@arndb.de \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jake.champlin.27@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox