summaryrefslogtreecommitdiff
path: root/drivers/staging/sm750fb/sm750.h
diff options
context:
space:
mode:
authorJuston Li <juston.h.li@gmail.com>2015-07-15 07:14:41 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-15 08:52:52 +0300
commit0d5e63c4626c0f8b3c8a12e8ce9a557273ce72ee (patch)
tree735fba86dcc63a841473ec672530195564488e57 /drivers/staging/sm750fb/sm750.h
parent6ab5b6d16bba08e9665d4ae1b122b55642d990b3 (diff)
downloadlinux-0d5e63c4626c0f8b3c8a12e8ce9a557273ce72ee.tar.xz
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;