summaryrefslogtreecommitdiffstats
path: root/drivers/staging/sm750fb/sm750.h
diff options
context:
space:
mode:
authorJuston Li2015-07-15 06:14:41 +0200
committerGreg Kroah-Hartman2015-07-15 07:52:52 +0200
commit0d5e63c4626c0f8b3c8a12e8ce9a557273ce72ee (patch)
tree735fba86dcc63a841473ec672530195564488e57 /drivers/staging/sm750fb/sm750.h
parentstaging: sm750fb: consistent spacing around operators (diff)
downloadkernel-qcow2-linux-0d5e63c4626c0f8b3c8a12e8ce9a557273ce72ee.tar.gz
kernel-qcow2-linux-0d5e63c4626c0f8b3c8a12e8ce9a557273ce72ee.tar.xz
kernel-qcow2-linux-0d5e63c4626c0f8b3c8a12e8ce9a557273ce72ee.zip
staging: sm750fb: add spaces around operators
Fixes checkpath.pl error: ERROR: spaces required around that operator Note running checkpatch.pl with '--strict' catches more of these errors along with cases where spacing is optional but preferred. Take care of these in a future patch. Signed-off-by: Juston Li <juston.h.li@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm750fb/sm750.h')
-rw-r--r--drivers/staging/sm750fb/sm750.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sm750fb/sm750.h b/drivers/staging/sm750fb/sm750.h
index ae872bd0819e..d6916fd697dd 100644
--- a/drivers/staging/sm750fb/sm750.h
+++ b/drivers/staging/sm750fb/sm750.h
@@ -172,7 +172,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;