[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1262815447-4555-1-git-send-email-jslaby@suse.cz>
Date: Wed, 6 Jan 2010 23:04:07 +0100
From: Jiri Slaby <jslaby@...e.cz>
To: mchehab@...radead.org
Cc: linux-kernel@...r.kernel.org, jirislaby@...il.com,
"Igor M. Liplianin" <liplianin@...by>,
Mauro Carvalho Chehab <mchehab@...hat.com>,
linux-media@...r.kernel.org
Subject: [PATCH 1/1] media: dvb/zl10039, jump to error on error
Stanse found an unreachable statement in zl10039_attach. There is
a `break' followed by `goto error'. Remove that break, so that it
can handle the error.
Signed-off-by: Jiri Slaby <jslaby@...e.cz>
Cc: Igor M. Liplianin <liplianin@...by>
Cc: Mauro Carvalho Chehab <mchehab@...hat.com>
Cc: linux-media@...r.kernel.org
---
drivers/media/dvb/frontends/zl10039.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/drivers/media/dvb/frontends/zl10039.c b/drivers/media/dvb/frontends/zl10039.c
index 11b29cb..c085e58 100644
--- a/drivers/media/dvb/frontends/zl10039.c
+++ b/drivers/media/dvb/frontends/zl10039.c
@@ -287,7 +287,6 @@ struct dvb_frontend *zl10039_attach(struct dvb_frontend *fe,
break;
default:
dprintk("Chip ID=%x does not match a known type\n", state->id);
- break;
goto error;
}
--
1.6.5.7
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists