mirror of https://gitee.com/openkylin/linux.git
staging: media: lirc: lirc_imon: Add space around the operators
CHECK: Add space around the operators { "<<", "*"}. Signed-off-by: Anchal Jain <anchalj109@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c16f06f55c
commit
f32519bf8e
|
@ -561,7 +561,7 @@ static void submit_data(struct imon_context *context)
|
||||||
value |= PULSE_BIT;
|
value |= PULSE_BIT;
|
||||||
|
|
||||||
for (i = 0; i < 4; ++i)
|
for (i = 0; i < 4; ++i)
|
||||||
buf[i] = value>>(i*8);
|
buf[i] = value >> (i * 8);
|
||||||
|
|
||||||
lirc_buffer_write(context->driver->rbuf, buf);
|
lirc_buffer_write(context->driver->rbuf, buf);
|
||||||
wake_up(&context->driver->rbuf->wait_poll);
|
wake_up(&context->driver->rbuf->wait_poll);
|
||||||
|
|
Loading…
Reference in New Issue