Commit 20f4f1a0 authored by Tapasweni Pathak's avatar Tapasweni Pathak Committed by Greg Kroah-Hartman

staging: media: lirc: remove unnecessary break after return

This patch fixes checkpatch.pl warning in lirc_serial.c file
WARNING : break is not useful after goto or return
Signed-off-by: default avatarTapasweni Pathak <tapaswenipathak@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c5366563
...@@ -948,7 +948,6 @@ static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) ...@@ -948,7 +948,6 @@ static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
case LIRC_GET_LENGTH: case LIRC_GET_LENGTH:
return -ENOIOCTLCMD; return -ENOIOCTLCMD;
break;
case LIRC_SET_SEND_DUTY_CYCLE: case LIRC_SET_SEND_DUTY_CYCLE:
dprintk("SET_SEND_DUTY_CYCLE\n"); dprintk("SET_SEND_DUTY_CYCLE\n");
...@@ -961,7 +960,6 @@ static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) ...@@ -961,7 +960,6 @@ static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
if (value <= 0 || value > 100) if (value <= 0 || value > 100)
return -EINVAL; return -EINVAL;
return init_timing_params(value, freq); return init_timing_params(value, freq);
break;
case LIRC_SET_SEND_CARRIER: case LIRC_SET_SEND_CARRIER:
dprintk("SET_SEND_CARRIER\n"); dprintk("SET_SEND_CARRIER\n");
...@@ -974,7 +972,6 @@ static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) ...@@ -974,7 +972,6 @@ static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
if (value > 500000 || value < 20000) if (value > 500000 || value < 20000)
return -EINVAL; return -EINVAL;
return init_timing_params(duty_cycle, value); return init_timing_params(duty_cycle, value);
break;
default: default:
return lirc_dev_fop_ioctl(filep, cmd, arg); return lirc_dev_fop_ioctl(filep, cmd, arg);
......
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