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: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ae6394aaf1
commit
cdd6dee0f1
@ -31,7 +31,7 @@
|
||||
/* input clock on serial interface */
|
||||
#define AD2S1200_HZ 8192000
|
||||
/* clock period in nano second */
|
||||
#define AD2S1200_TSCLK (1000000000/AD2S1200_HZ)
|
||||
#define AD2S1200_TSCLK (1000000000 / AD2S1200_HZ)
|
||||
|
||||
struct ad2s1200_state {
|
||||
struct mutex lock;
|
||||
|
@ -67,7 +67,7 @@
|
||||
/* default input clock on serial interface */
|
||||
#define AD2S1210_DEF_CLKIN 8192000
|
||||
/* 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
|
||||
|
||||
enum ad2s1210_mode {
|
||||
@ -176,9 +176,9 @@ static const int ad2s1210_res_pins[4][2] = {
|
||||
static inline void ad2s1210_set_resolution_pin(struct ad2s1210_state *st)
|
||||
{
|
||||
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],
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user