Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 928213aa authored by Andy Walls's avatar Andy Walls Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (13253): cx23885: CodingStyle fix



Add whitespace around binary operators in cx23888-ir.c

Signed-off-by: default avatarAndy Walls <awalls@radix.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7fb101ae
Loading
Loading
Loading
Loading
+19 −18
Original line number Diff line number Diff line
@@ -243,7 +243,8 @@ static inline u16 ns_to_lpf_count(unsigned int ns)
static inline unsigned int lpf_count_to_ns(unsigned int count)
{
	/* Duration of the Low Pass Filter rejection window in ns */
	return DIV_ROUND_CLOSEST(count * 1000, CX23888_IR_REFCLK_FREQ/1000000);
	return DIV_ROUND_CLOSEST(count * 1000,
				 CX23888_IR_REFCLK_FREQ / 1000000);
}

static inline unsigned int lpf_count_to_us(unsigned int count)