Commit e147791f authored by Victor Colombo's avatar Victor Colombo Committed by Jonathan Cameron

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: default avatarVictor Colombo <victorcolombo@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 7d1d308a
...@@ -210,7 +210,7 @@ static int ad5933_set_freq(struct ad5933_state *st, ...@@ -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) {
......
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