buf[1] &= ~cQSS;
        }
 
-       if (adjust >= 0x00 && adjust < 0x20) {
+       if (adjust < 0x20) {
                buf[2] &= ~cTopMask;
                buf[2] |= adjust;
        }
 
 
        *pGroupCfg = 1;
 
-       if (PinNum >= 0 && PinNum <= 1) {
+       if (PinNum <= 1)        {
                *pTranslatedPinNum = 0;
                *pGroupNum = 9;
                *pGroupCfg = 2;
 
 
        v4l2_dbg(1, debug, sd, "set input %x\n", input);
 
-       if (input < 0 || input > 7)
+       if (input > 7)
                return -EINVAL;
 
        if (sd->v4l2_dev == NULL || sd->v4l2_dev->notify == NULL)
 
 
        DEB_EE(("VIDIOC_S_INPUT %d.\n", input));
 
-       if (input < 0 || input >= HEXIUM_INPUTS)
+       if (input >= HEXIUM_INPUTS)
                return -EINVAL;
 
        hexium->cur_input = input;
 
        struct saa7146_dev *dev = ((struct saa7146_fh *)fh)->dev;
        struct hexium *hexium = (struct hexium *) dev->ext_priv;
 
-       if (input < 0 || input >= HEXIUM_INPUTS)
+       if (input >= HEXIUM_INPUTS)
                return -EINVAL;
 
        hexium->cur_input = input;
 
 
        DEB_EE(("VIDIOC_S_INPUT %d.\n", input));
 
-       if (input < 0 || input >= MXB_INPUTS)
+       if (input >= MXB_INPUTS)
                return -EINVAL;
 
        mxb->cur_input = input;
 
                                if (pdword[1] >= MAX_CHANNELS)
                                        break;
                                cc = G_chnmap[pdword[1]];
-                               if (!(cc >= 0 && cc < MAX_CHANNELS))
+                               if (cc >= MAX_CHANNELS)
                                        break;
                                switch (pdword[2]) {
                                case S2255_RESPONSE_SETMODE:
 
 {
        struct saa7110 *decoder = to_saa7110(sd);
 
-       if (input < 0 || input >= SAA7110_MAX_INPUT) {
+       if (input >= SAA7110_MAX_INPUT) {
                v4l2_dbg(1, debug, sd, "input=%d not available\n", input);
                return -EINVAL;
        }
 
        v4l2_dbg(1, debug, sd, "decoder set input (%d)\n", input);
        /* inputs from 0-9 are available*/
        /* saa717x have mode0-mode9 but mode5 is reserved. */
-       if (input < 0 || input > 9 || input == 5)
+       if (input > 9 || input == 5)
                return -EINVAL;
 
        if (decoder->input != input) {
 
 
        t->type = type;
        /* prevent invalid config values */
-       t->config = ((new_config >= 0) && (new_config < 256)) ? new_config : 0;
+       t->config = new_config < 256 ? new_config : 0;
        if (tuner_callback != NULL) {
                tuner_dbg("defining GPIO callback\n");
                t->fe.callback = tuner_callback;
 
 {
        struct usb_usbvision *usbvision = video_drvdata(file);
 
-       if ((input >= usbvision->video_inputs) || (input < 0) )
+       if (input >= usbvision->video_inputs)
                return -EINVAL;
 
        mutex_lock(&usbvision->lock);
 
                {0x0e, 1}
        };
 
-       if (input < 0 || input > 2)
+       if (input > 2)
                return -EINVAL;
 
        v4l2_dbg(1, debug, sd, "input switched to %s\n", inputs[input]);
 
        struct zoran_fh *fh = __fh;
        struct zoran *zr = fh->zr;
 
-       if (inp->index < 0 || inp->index >= zr->card.inputs)
+       if (inp->index >= zr->card.inputs)
                return -EINVAL;
        else {
                int id = inp->index;