summaryrefslogtreecommitdiffstats
path: root/drivers/staging/sm750fb/sm750.h
diff options
context:
space:
mode:
authorVarsha Rao2017-02-27 11:10:52 +0100
committerGreg Kroah-Hartman2017-03-06 09:17:06 +0100
commitdca633d49c0362e9c8ac6beff151176dfd982d08 (patch)
treec8cc67bd3931b96846105df0b9626beb08c4cf85 /drivers/staging/sm750fb/sm750.h
parentstaging: sm750fb: Remove unnecessary blank lines. (diff)
downloadkernel-qcow2-linux-dca633d49c0362e9c8ac6beff151176dfd982d08.tar.gz
kernel-qcow2-linux-dca633d49c0362e9c8ac6beff151176dfd982d08.tar.xz
kernel-qcow2-linux-dca633d49c0362e9c8ac6beff151176dfd982d08.zip
staging: sm750fb: Added spaces around arithmetic operators.
Added spaces around arithmetic operators (/, *), to fix the checkpatch issue. Signed-off-by: Varsha Rao <rvarsha016@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 28f4b9b4f95f..306711ed55f9 100644
--- a/drivers/staging/sm750fb/sm750.h
+++ b/drivers/staging/sm750fb/sm750.h
@@ -177,7 +177,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;