staging: iio: ad5933: Remove unnecessary space on casting
This patch fixes the checkpatch.pl warning: WARNING: No space is necessary after a cast Signed-off-by: Victor Colombo <victorcolombo@gmail.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
7d1d308a47
commit
e147791fa1
|
@ -210,7 +210,7 @@ static int ad5933_set_freq(struct ad5933_state *st,
|
||||||
u8 d8[4];
|
u8 d8[4];
|
||||||
} dat;
|
} dat;
|
||||||
|
|
||||||
freqreg = (u64) freq * (u64) (1 << 27);
|
freqreg = (u64)freq * (u64)(1 << 27);
|
||||||
do_div(freqreg, st->mclk_hz / 4);
|
do_div(freqreg, st->mclk_hz / 4);
|
||||||
|
|
||||||
switch (reg) {
|
switch (reg) {
|
||||||
|
|
Loading…
Reference in New Issue