diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-27 14:47:17 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 10:17:13 (GMT) |
commit | d78aa7292ad38b22ccb9cdba99293cedb52fb342 (patch) | |
tree | b499d02d7270ebaab917dd126d7aa5d78a2d448f | |
parent | fce50ac80e38b1d205939ff7d4777536701263a6 (diff) | |
download | linux-d78aa7292ad38b22ccb9cdba99293cedb52fb342.tar.xz |
[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 f0076eb..52be6de 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) return -EFAULT; } -done: /* Oh good, it worked */ dprintk("sent code %u, key %u\n", code, key); return 0; |