public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "Shah, Yash (Y.)" <yshah1@visteon.com>
To: "rafael.j.wysocki@intel.com" <rafael.j.wysocki@intel.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Babu, Viswanathan (V.)" <vbabu3@visteon.com>
Subject: [PATCH] Staging: pnp: Fix "foo* bar" should be "foo *bar" errors From: Yash Shah <yshah1@visteon.com>
Date: Fri, 4 Dec 2015 08:58:53 +0000	[thread overview]
Message-ID: <20151204085627.GA6213@ubuntu> (raw)

Fix "foo* bar" should be "foo *bar" errors as detected by checkpatch.pl

Signed-off-by: Yash Shah <yshah1@visteon.com>
---
 drivers/pnp/interface.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/pnp/interface.c b/drivers/pnp/interface.c
index 4b6808f..860fca3 100644
--- a/drivers/pnp/interface.c
+++ b/drivers/pnp/interface.c
@@ -32,7 +32,7 @@ struct pnp_info_buffer {
 
 typedef struct pnp_info_buffer pnp_info_buffer_t;
 
-static int pnp_printf(pnp_info_buffer_t * buffer, char *fmt, ...)
+static int pnp_printf(pnp_info_buffer_t *buffer, char *fmt, ...)
 {
 	va_list args;
 	int res;
@@ -51,7 +51,7 @@ static int pnp_printf(pnp_info_buffer_t * buffer, char *fmt, ...)
 	return res;
 }
 
-static void pnp_print_port(pnp_info_buffer_t * buffer, char *space,
+static void pnp_print_port(pnp_info_buffer_t *buffer, char *space,
 			   struct pnp_port *port)
 {
 	pnp_printf(buffer, "%sport %#llx-%#llx, align %#llx, size %#llx, "
@@ -63,7 +63,7 @@ static void pnp_print_port(pnp_info_buffer_t * buffer, char *space,
 		   port->flags & IORESOURCE_IO_16BIT_ADDR ? 16 : 10);
 }
 
-static void pnp_print_irq(pnp_info_buffer_t * buffer, char *space,
+static void pnp_print_irq(pnp_info_buffer_t *buffer, char *space,
 			  struct pnp_irq *irq)
 {
 	int first = 1, i;
@@ -96,7 +96,7 @@ static void pnp_print_irq(pnp_info_buffer_t * buffer, char *space,
 	pnp_printf(buffer, "\n");
 }
 
-static void pnp_print_dma(pnp_info_buffer_t * buffer, char *space,
+static void pnp_print_dma(pnp_info_buffer_t *buffer, char *space,
 			  struct pnp_dma *dma)
 {
 	int first = 1, i;
@@ -148,7 +148,7 @@ static void pnp_print_dma(pnp_info_buffer_t * buffer, char *space,
 	pnp_printf(buffer, " %s\n", s);
 }
 
-static void pnp_print_mem(pnp_info_buffer_t * buffer, char *space,
+static void pnp_print_mem(pnp_info_buffer_t *buffer, char *space,
 			  struct pnp_mem *mem)
 {
 	char *s;
@@ -184,7 +184,7 @@ static void pnp_print_mem(pnp_info_buffer_t * buffer, char *space,
 	pnp_printf(buffer, ", %s\n", s);
 }
 
-static void pnp_print_option(pnp_info_buffer_t * buffer, char *space,
+static void pnp_print_option(pnp_info_buffer_t *buffer, char *space,
 			     struct pnp_option *option)
 {
 	switch (option->type) {
-- 
1.9.1

                 reply	other threads:[~2015-12-04  9:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20151204085627.GA6213@ubuntu \
    --to=yshah1@visteon.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.com \
    --cc=vbabu3@visteon.com \
    /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