Commit cdd6dee0 authored by Eva Rachel Retuya's avatar Eva Rachel Retuya Committed by Greg Kroah-Hartman

staging: iio: resolver: add spaces around operators

Add spaces around operators to improve readability and to address the
checkpatch issue:

CHECK: spaces preferred around that '/' (ctx:VxV)
Signed-off-by: default avatarEva Rachel Retuya <eraretuya@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ae6394aa
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
/* input clock on serial interface */ /* input clock on serial interface */
#define AD2S1200_HZ 8192000 #define AD2S1200_HZ 8192000
/* clock period in nano second */ /* clock period in nano second */
#define AD2S1200_TSCLK (1000000000/AD2S1200_HZ) #define AD2S1200_TSCLK (1000000000 / AD2S1200_HZ)
struct ad2s1200_state { struct ad2s1200_state {
struct mutex lock; struct mutex lock;
......
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
/* default input clock on serial interface */ /* default input clock on serial interface */
#define AD2S1210_DEF_CLKIN 8192000 #define AD2S1210_DEF_CLKIN 8192000
/* clock period in nano second */ /* clock period in nano second */
#define AD2S1210_DEF_TCK (1000000000/AD2S1210_DEF_CLKIN) #define AD2S1210_DEF_TCK (1000000000 / AD2S1210_DEF_CLKIN)
#define AD2S1210_DEF_EXCIT 10000 #define AD2S1210_DEF_EXCIT 10000
enum ad2s1210_mode { enum ad2s1210_mode {
...@@ -176,9 +176,9 @@ static const int ad2s1210_res_pins[4][2] = { ...@@ -176,9 +176,9 @@ static const int ad2s1210_res_pins[4][2] = {
static inline void ad2s1210_set_resolution_pin(struct ad2s1210_state *st) static inline void ad2s1210_set_resolution_pin(struct ad2s1210_state *st)
{ {
gpio_set_value(st->pdata->res[0], gpio_set_value(st->pdata->res[0],
ad2s1210_res_pins[(st->resolution - 10)/2][0]); ad2s1210_res_pins[(st->resolution - 10) / 2][0]);
gpio_set_value(st->pdata->res[1], gpio_set_value(st->pdata->res[1],
ad2s1210_res_pins[(st->resolution - 10)/2][1]); ad2s1210_res_pins[(st->resolution - 10) / 2][1]);
} }
static inline int ad2s1210_soft_reset(struct ad2s1210_state *st) static inline int ad2s1210_soft_reset(struct ad2s1210_state *st)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment