Commit 32ddcbb5 authored by Ricardo Silva's avatar Ricardo Silva Committed by Mauro Carvalho Chehab

[media] lirc_zilog: Fix whitespace style checks

Fix style issues reported by checkpatch, affecting whitespace only:

 * CHECK: "Please don't use multiple blank lines".
   Two of these still triggering and left untouched because used for
   separating logical blocks (vars from functions, etc.).

 * CHECK: "spaces preferred around that '<operator>'".
   All fixed.

 * CHECK: "Alignment should match open parenthesis".
   All fixed except one on line 1161, left untouched for readability.

Move towards recommended coding style without compromising readability.
Signed-off-by: default avatarRicardo Silva <rjpdasilva@gmail.com>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 2270962c
...@@ -472,7 +472,7 @@ static int lirc_thread(void *arg) ...@@ -472,7 +472,7 @@ static int lirc_thread(void *arg)
/* if device not opened, we can sleep half a second */ /* if device not opened, we can sleep half a second */
if (atomic_read(&ir->open_count) == 0) { if (atomic_read(&ir->open_count) == 0) {
schedule_timeout(HZ/2); schedule_timeout(HZ / 2);
continue; continue;
} }
...@@ -1056,7 +1056,7 @@ static int send_code(struct IR_tx *tx, unsigned int code, unsigned int key) ...@@ -1056,7 +1056,7 @@ static int send_code(struct IR_tx *tx, unsigned int code, unsigned int key)
break; break;
dev_dbg(tx->ir->l.dev, dev_dbg(tx->ir->l.dev,
"NAK expected: i2c_master_send failed with %d (try %d)\n", "NAK expected: i2c_master_send failed with %d (try %d)\n",
ret, i+1); ret, i + 1);
} }
if (ret != 1) { if (ret != 1) {
dev_err(tx->ir->l.dev, dev_err(tx->ir->l.dev,
...@@ -1222,7 +1222,7 @@ static unsigned int poll(struct file *filep, poll_table *wait) ...@@ -1222,7 +1222,7 @@ static unsigned int poll(struct file *filep, poll_table *wait)
poll_wait(filep, &rbuf->wait_poll, wait); poll_wait(filep, &rbuf->wait_poll, wait);
/* Indicate what ops could happen immediately without blocking */ /* Indicate what ops could happen immediately without blocking */
ret = lirc_buffer_empty(rbuf) ? 0 : (POLLIN|POLLRDNORM); ret = lirc_buffer_empty(rbuf) ? 0 : (POLLIN | POLLRDNORM);
dev_dbg(ir->l.dev, "poll result = %s\n", dev_dbg(ir->l.dev, "poll result = %s\n",
ret ? "POLLIN|POLLRDNORM" : "none"); ret ? "POLLIN|POLLRDNORM" : "none");
...@@ -1246,15 +1246,15 @@ static long ioctl(struct file *filep, unsigned int cmd, unsigned long arg) ...@@ -1246,15 +1246,15 @@ static long ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
result = put_user(features, uptr); result = put_user(features, uptr);
break; break;
case LIRC_GET_REC_MODE: case LIRC_GET_REC_MODE:
if (!(features&LIRC_CAN_REC_MASK)) if (!(features & LIRC_CAN_REC_MASK))
return -ENOSYS; return -ENOSYS;
result = put_user(LIRC_REC2MODE result = put_user(LIRC_REC2MODE
(features&LIRC_CAN_REC_MASK), (features & LIRC_CAN_REC_MASK),
uptr); uptr);
break; break;
case LIRC_SET_REC_MODE: case LIRC_SET_REC_MODE:
if (!(features&LIRC_CAN_REC_MASK)) if (!(features & LIRC_CAN_REC_MASK))
return -ENOSYS; return -ENOSYS;
result = get_user(mode, uptr); result = get_user(mode, uptr);
...@@ -1262,13 +1262,13 @@ static long ioctl(struct file *filep, unsigned int cmd, unsigned long arg) ...@@ -1262,13 +1262,13 @@ static long ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
result = -EINVAL; result = -EINVAL;
break; break;
case LIRC_GET_SEND_MODE: case LIRC_GET_SEND_MODE:
if (!(features&LIRC_CAN_SEND_MASK)) if (!(features & LIRC_CAN_SEND_MASK))
return -ENOSYS; return -ENOSYS;
result = put_user(LIRC_MODE_PULSE, uptr); result = put_user(LIRC_MODE_PULSE, uptr);
break; break;
case LIRC_SET_SEND_MODE: case LIRC_SET_SEND_MODE:
if (!(features&LIRC_CAN_SEND_MASK)) if (!(features & LIRC_CAN_SEND_MASK))
return -ENOSYS; return -ENOSYS;
result = get_user(mode, uptr); result = get_user(mode, uptr);
...@@ -1414,7 +1414,6 @@ static int ir_remove(struct i2c_client *client) ...@@ -1414,7 +1414,6 @@ static int ir_remove(struct i2c_client *client)
return 0; return 0;
} }
/* ir_devices_lock must be held */ /* ir_devices_lock must be held */
static struct IR *get_ir_device_by_adapter(struct i2c_adapter *adapter) static struct IR *get_ir_device_by_adapter(struct i2c_adapter *adapter)
{ {
......
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