* better readability
* make checkpatch.pl happy
* few bytes smaller binary footprint

Cc: Oliver Schinagl <oli...@schinagl.nl>
Signed-off-by: Antti Palosaari <cr...@iki.fi>
---
 drivers/media/tuners/fc2580.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/media/tuners/fc2580.c b/drivers/media/tuners/fc2580.c
index 51bc39c..7db32ec 100644
--- a/drivers/media/tuners/fc2580.c
+++ b/drivers/media/tuners/fc2580.c
@@ -498,7 +498,11 @@ struct dvb_frontend *fc2580_attach(struct dvb_frontend *fe,
 
        dev_dbg(&priv->i2c->dev, "%s: chip_id=%02x\n", __func__, chip_id);
 
-       if ((chip_id != 0x56) && (chip_id != 0x5a)) {
+       switch (chip_id) {
+       case 0x56:
+       case 0x5a:
+               break;
+       default:
                goto err;
        }
 
-- 
1.7.11.4

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to