All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: sm750fb: Add space around '*'
@ 2016-10-11 18:25 Dilek Uzulmez
  2016-10-12  6:04 ` [Outreachy kernel] " Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Dilek Uzulmez @ 2016-10-11 18:25 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: Dilek Uzulmez

Add space around operators '*'. Problem found using checkpatch.pl
CHECK: spaces preferred around that '*' (ctx:VxV)

Signed-off-by: Dilek Uzulmez <dilekuzulmez@gmail.com>
---
 drivers/staging/sm750fb/sm750.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/sm750fb/sm750.h b/drivers/staging/sm750fb/sm750.h
index ff31c5c..2a4060c 100644
--- a/drivers/staging/sm750fb/sm750.h
+++ b/drivers/staging/sm750fb/sm750.h
@@ -175,7 +175,7 @@ struct lynxfb_par {
 
 static inline unsigned long ps_to_hz(unsigned int psvalue)
 {
-	unsigned long long numerator = 1000*1000*1000*1000ULL;
+	unsigned long long numerator = 1000 * 1000 * 1000 * 1000ULL;
 	/* 10^12 / picosecond period gives frequency in Hz */
 	do_div(numerator, psvalue);
 	return (unsigned long)numerator;
-- 
1.9.1



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

* Re: [Outreachy kernel] [PATCH] Staging: sm750fb: Add space around '*'
  2016-10-11 18:25 [PATCH] Staging: sm750fb: Add space around '*' Dilek Uzulmez
@ 2016-10-12  6:04 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2016-10-12  6:04 UTC (permalink / raw)
  To: Dilek Uzulmez; +Cc: outreachy-kernel

On Tue, Oct 11, 2016 at 09:25:34PM +0300, Dilek Uzulmez wrote:
> Add space around operators '*'. Problem found using checkpatch.pl
> CHECK: spaces preferred around that '*' (ctx:VxV)
> 
> Signed-off-by: Dilek Uzulmez <dilekuzulmez@gmail.com>
> ---
>  drivers/staging/sm750fb/sm750.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Any reason you didn't also cc: the correct maintainers for your patches?
Please resend all of them by following the instructions in the tutorial
to determine how to properly figure out who they are.

thanks,

greg k-h


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

end of thread, other threads:[~2016-10-12  6:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-11 18:25 [PATCH] Staging: sm750fb: Add space around '*' Dilek Uzulmez
2016-10-12  6:04 ` [Outreachy kernel] " Greg KH

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.