[media] media: cx18, ivtv: eliminate unnecessary array index checks
authorNickolai Zeldovich <nickolai@csail.mit.edu>
Mon, 7 Jan 2013 00:52:03 +0000 (21:52 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 5 Feb 2013 21:19:44 +0000 (19:19 -0200)
The idx values passed to cx18_i2c_register() and ivtv_i2c_register()
by cx18_init_subdevs() and ivtv_load_and_init_modules() respectively
are always in-range, based on how the hw_all bitmask is populated.
Previously, the checks were already ineffective because arrays were
being dereferenced using the index before the check.

Acked-by: Andy Walls <awalls@md.metrocast.net>
Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/pci/cx18/cx18-i2c.c
drivers/media/pci/ivtv/ivtv-i2c.c

index d61ac6393e7e0e230e7bcd09c9694ccf3be9cd52..4af8cd6df95d05700395c51f4d3565ec21bc3ab0 100644 (file)
@@ -116,9 +116,6 @@ int cx18_i2c_register(struct cx18 *cx, unsigned idx)
        const char *type = hw_devicenames[idx];
        u32 hw = 1 << idx;
 
-       if (idx >= ARRAY_SIZE(hw_addrs))
-               return -1;
-
        if (hw == CX18_HW_TUNER) {
                /* special tuner group handling */
                sd = v4l2_i2c_new_subdev(&cx->v4l2_dev,
index a1811054fde4d4a39c8822bb0d9c34221d746c92..ceed2d87abfd4ea2b639a4d9433f78418696c1eb 100644 (file)
@@ -267,8 +267,6 @@ int ivtv_i2c_register(struct ivtv *itv, unsigned idx)
        const char *type = hw_devicenames[idx];
        u32 hw = 1 << idx;
 
-       if (idx >= ARRAY_SIZE(hw_addrs))
-               return -1;
        if (hw == IVTV_HW_TUNER) {
                /* special tuner handling */
                sd = v4l2_i2c_new_subdev(&itv->v4l2_dev, adap, type, 0,
This page took 0.02533 seconds and 5 git commands to generate.