mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 10:34:22 -04:00
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:
committed by
Jonathan Cameron
parent
7d1d308a47
commit
e147791fa1
@@ -210,7 +210,7 @@ static int ad5933_set_freq(struct ad5933_state *st,
|
||||
u8 d8[4];
|
||||
} dat;
|
||||
|
||||
freqreg = (u64) freq * (u64) (1 << 27);
|
||||
freqreg = (u64)freq * (u64)(1 << 27);
|
||||
do_div(freqreg, st->mclk_hz / 4);
|
||||
|
||||
switch (reg) {
|
||||
|
||||
Reference in New Issue
Block a user