diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-27 09:47:17 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:17:13 -0500 |
commit | d78aa7292ad38b22ccb9cdba99293cedb52fb342 (patch) | |
tree | b499d02d7270ebaab917dd126d7aa5d78a2d448f | |
parent | fce50ac80e38b1d205939ff7d4777536701263a6 (diff) |
[media] lirc_zilog: Fix a warning
drivers/staging/lirc/lirc_zilog.c: In function ‘send_code’:
drivers/staging/lirc/lirc_zilog.c:886:1: warning: label ‘done’ defined but not used
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/staging/lirc/lirc_zilog.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/lirc/lirc_zilog.c b/drivers/staging/lirc/lirc_zilog.c index f0076eb025f1..52be6de042ad 100644 --- a/drivers/staging/lirc/lirc_zilog.c +++ b/drivers/staging/lirc/lirc_zilog.c | |||
@@ -883,7 +883,6 @@ static int send_code(struct IR *ir, unsigned int code, unsigned int key) | |||
883 | return -EFAULT; | 883 | return -EFAULT; |
884 | } | 884 | } |
885 | 885 | ||
886 | done: | ||
887 | /* Oh good, it worked */ | 886 | /* Oh good, it worked */ |
888 | dprintk("sent code %u, key %u\n", code, key); | 887 | dprintk("sent code %u, key %u\n", code, key); |
889 | return 0; | 888 | return 0; |