mirror of
https://github.com/hardkernel/linux.git
synced 2026-05-31 16:26:41 +09:00
staging: media: lirc: lirc_imon: Remove a blank line before a close parenthesis '}'
CHECK: Remove unnecessary space after cast Signed-off-by: Anchal Jain <anchalj109@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
09ed2c0b9b
commit
c16f06f55c
@@ -427,7 +427,7 @@ static ssize_t vfd_write(struct file *file, const char __user *buf,
|
||||
|
||||
do {
|
||||
memcpy(context->usb_tx_buf, context->tx.data_buf + offset, 7);
|
||||
context->usb_tx_buf[7] = (unsigned char) seq;
|
||||
context->usb_tx_buf[7] = (unsigned char)seq;
|
||||
|
||||
retval = send_packet(context);
|
||||
if (retval) {
|
||||
@@ -445,7 +445,7 @@ static ssize_t vfd_write(struct file *file, const char __user *buf,
|
||||
if (context->vfd_proto_6p) {
|
||||
/* Send packet #6 */
|
||||
memcpy(context->usb_tx_buf, &vfd_packet6, sizeof(vfd_packet6));
|
||||
context->usb_tx_buf[7] = (unsigned char) seq;
|
||||
context->usb_tx_buf[7] = (unsigned char)seq;
|
||||
retval = send_packet(context);
|
||||
if (retval)
|
||||
dev_err(&context->usbdev->dev,
|
||||
|
||||
Reference in New Issue
Block a user