mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 10:26:40 +07:00
[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: Ricardo Silva <rjpdasilva@gmail.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
2270962c9d
commit
32ddcbb5b8
@ -472,7 +472,7 @@ static int lirc_thread(void *arg)
|
||||
|
||||
/* if device not opened, we can sleep half a second */
|
||||
if (atomic_read(&ir->open_count) == 0) {
|
||||
schedule_timeout(HZ/2);
|
||||
schedule_timeout(HZ / 2);
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -1056,7 +1056,7 @@ static int send_code(struct IR_tx *tx, unsigned int code, unsigned int key)
|
||||
break;
|
||||
dev_dbg(tx->ir->l.dev,
|
||||
"NAK expected: i2c_master_send failed with %d (try %d)\n",
|
||||
ret, i+1);
|
||||
ret, i + 1);
|
||||
}
|
||||
if (ret != 1) {
|
||||
dev_err(tx->ir->l.dev,
|
||||
@ -1222,7 +1222,7 @@ static unsigned int poll(struct file *filep, poll_table *wait)
|
||||
poll_wait(filep, &rbuf->wait_poll, wait);
|
||||
|
||||
/* 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",
|
||||
ret ? "POLLIN|POLLRDNORM" : "none");
|
||||
@ -1246,15 +1246,15 @@ static long ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
|
||||
result = put_user(features, uptr);
|
||||
break;
|
||||
case LIRC_GET_REC_MODE:
|
||||
if (!(features&LIRC_CAN_REC_MASK))
|
||||
if (!(features & LIRC_CAN_REC_MASK))
|
||||
return -ENOSYS;
|
||||
|
||||
result = put_user(LIRC_REC2MODE
|
||||
(features&LIRC_CAN_REC_MASK),
|
||||
(features & LIRC_CAN_REC_MASK),
|
||||
uptr);
|
||||
break;
|
||||
case LIRC_SET_REC_MODE:
|
||||
if (!(features&LIRC_CAN_REC_MASK))
|
||||
if (!(features & LIRC_CAN_REC_MASK))
|
||||
return -ENOSYS;
|
||||
|
||||
result = get_user(mode, uptr);
|
||||
@ -1262,13 +1262,13 @@ static long ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
|
||||
result = -EINVAL;
|
||||
break;
|
||||
case LIRC_GET_SEND_MODE:
|
||||
if (!(features&LIRC_CAN_SEND_MASK))
|
||||
if (!(features & LIRC_CAN_SEND_MASK))
|
||||
return -ENOSYS;
|
||||
|
||||
result = put_user(LIRC_MODE_PULSE, uptr);
|
||||
break;
|
||||
case LIRC_SET_SEND_MODE:
|
||||
if (!(features&LIRC_CAN_SEND_MASK))
|
||||
if (!(features & LIRC_CAN_SEND_MASK))
|
||||
return -ENOSYS;
|
||||
|
||||
result = get_user(mode, uptr);
|
||||
@ -1414,7 +1414,6 @@ static int ir_remove(struct i2c_client *client)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/* ir_devices_lock must be held */
|
||||
static struct IR *get_ir_device_by_adapter(struct i2c_adapter *adapter)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user