[media] staging: media: lirc: no space after cast

checkpatch complains about space after type cast.

[mchehab@osg.samsung.com: removed an obsolete hunk]
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Sudip Mukherjee 2015-12-18 11:05:26 -02:00 committed by Mauro Carvalho Chehab
parent 23c7d71341
commit b790aea57e
1 changed files with 4 additions and 4 deletions

View File

@ -286,9 +286,9 @@ static void lirc_lirc_irq_handler(void *blah)
/* adjust value to usecs */
__u64 helper;
helper = ((__u64) signal)*1000000;
helper = ((__u64)signal)*1000000;
do_div(helper, timer);
signal = (long) helper;
signal = (long)helper;
if (signal > LIRC_SFH506_DELAY)
data = signal - LIRC_SFH506_DELAY;
@ -393,9 +393,9 @@ static ssize_t lirc_write(struct file *filep, const char __user *buf, size_t n,
for (i = 0; i < count; i++) {
__u64 helper;
helper = ((__u64) wbuf[i])*timer;
helper = ((__u64)wbuf[i])*timer;
do_div(helper, 1000000);
wbuf[i] = (int) helper;
wbuf[i] = (int)helper;
}
local_irq_save(flags);