aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGulsah Kose <gulsah.1004@gmail.com>2014-09-20 18:26:03 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-19 20:40:44 -0400
commita5613fe8967534ce626875fab4bcface70d366b4 (patch)
tree913b94b5071d57c56eaa333b62a948058a48c7ec
parenta17ec4c9fd07d3f4760cc6545b54f8323ea6ccb4 (diff)
staging: media: lirc: Fixes unnecessary return warning.
This patch fixes "void function return statements are not generally useful" checkpatch.pl warning in lirc_zilog.c Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/media/lirc/lirc_zilog.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/media/lirc/lirc_zilog.c b/drivers/staging/media/lirc/lirc_zilog.c
index 0bf4bb3f0811..567feba0011c 100644
--- a/drivers/staging/media/lirc/lirc_zilog.c
+++ b/drivers/staging/media/lirc/lirc_zilog.c
@@ -258,7 +258,6 @@ static void release_ir_rx(struct kref *ref)
258 /* Don't put_ir_device(rx->ir) here; lock can't be freed yet */ 258 /* Don't put_ir_device(rx->ir) here; lock can't be freed yet */
259 ir->rx = NULL; 259 ir->rx = NULL;
260 /* Don't do the kfree(rx) here; we still need to kill the poll thread */ 260 /* Don't do the kfree(rx) here; we still need to kill the poll thread */
261 return;
262} 261}
263 262
264static int put_ir_rx(struct IR_rx *rx, bool ir_devices_lock_held) 263static int put_ir_rx(struct IR_rx *rx, bool ir_devices_lock_held)
@@ -512,7 +511,6 @@ static int set_use_inc(void *data)
512 511
513static void set_use_dec(void *data) 512static void set_use_dec(void *data)
514{ 513{
515 return;
516} 514}
517 515
518/* safe read of a uint32 (always network byte order) */ 516/* safe read of a uint32 (always network byte order) */