Skip to content

Commit

Permalink
staging: solo6010: fix signess bug
Browse files Browse the repository at this point in the history
video_nr is unsigned, so check video_nr >= 0 doesn't make sense.
The only "negative" value may be -1, so explicitly check for it.

Signed-off-by: Vasiliy Kulikov <segooon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Vasiliy Kulikov authored and Greg Kroah-Hartman committed Sep 16, 2010
1 parent 2427924 commit 3850a8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/solo6x10/solo6010-v4l2-enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@ static struct solo_enc_dev *solo_enc_alloc(struct solo6010_dev *solo_dev, u8 ch)
"%s-enc (%i/%i)", SOLO6010_NAME, solo_dev->vfd->num,
solo_enc->vfd->num);

if (video_nr >= 0)
if (video_nr != -1)
video_nr++;

spin_lock_init(&solo_enc->lock);
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/solo6x10/solo6010-v4l2.c
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ int solo_v4l2_init(struct solo6010_dev *solo_dev)
snprintf(solo_dev->vfd->name, sizeof(solo_dev->vfd->name), "%s (%i)",
SOLO6010_NAME, solo_dev->vfd->num);

if (video_nr >= 0)
if (video_nr != -1)
video_nr++;

dev_info(&solo_dev->pdev->dev, "Display as /dev/video%d with "
Expand Down

0 comments on commit 3850a8a

Please sign in to comment.