public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: pnp: Fix "foo* bar" should be "foo *bar" errors From: Yash Shah <yshah1@visteon.com>
@ 2015-12-04  8:58 Shah, Yash (Y.)
  0 siblings, 0 replies; only message in thread
From: Shah, Yash (Y.) @ 2015-12-04  8:58 UTC (permalink / raw)
  To: rafael.j.wysocki@intel.com
  Cc: linux-kernel@vger.kernel.org, Babu, Viswanathan (V.)

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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-12-04  9:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-04  8:58 [PATCH] Staging: pnp: Fix "foo* bar" should be "foo *bar" errors From: Yash Shah <yshah1@visteon.com> Shah, Yash (Y.)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox