From 31418e37019ec188f4201587c7234bfb463e7bf4 Mon Sep 17 00:00:00 2001 From: Amitoj Kaur Chawla Date: Sun, 4 Oct 2015 20:15:34 +0530 Subject: [PATCH] staging: sm750fb: Add space around '?' Add space around operator '?'. Problem found using checkpatch.pl CHECK: spaces preferred around that '?' (ctx:VxV) Signed-off-by: Amitoj Kaur Chawla Signed-off-by: Greg Kroah-Hartman --- drivers/staging/sm750fb/ddk750_chip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c index 057a4c3f7236..2aacb01d2e3d 100644 --- a/drivers/staging/sm750fb/ddk750_chip.c +++ b/drivers/staging/sm750fb/ddk750_chip.c @@ -410,7 +410,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll) M = quo * X; M += fl_quo * X / 10000; /* round step */ - M += (fl_quo * X % 10000) > 5000?1:0; + M += (fl_quo * X % 10000) > 5000 ? 1:0; if (M < 256 && M > 0) { unsigned int diff; -- 2.34.1