mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
Staging: vc04_services: Fix a couple error codes
[ Upstream commitca4e4efbef] These are accidentally returning positive EINVAL instead of negative -EINVAL. Some of the callers treat positive values as success. Fixes:7b3ad5abf0("staging: Import the BCM2835 MMAL-based V4L2 camera driver.") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Stefan Wahren <stefan.wahren@i2se.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
97605ba687
commit
dd9b6de79b
@@ -576,7 +576,7 @@ exit:
|
|||||||
dev->colourfx.enable ? "true" : "false",
|
dev->colourfx.enable ? "true" : "false",
|
||||||
dev->colourfx.u, dev->colourfx.v,
|
dev->colourfx.u, dev->colourfx.v,
|
||||||
ret, (ret == 0 ? 0 : -EINVAL));
|
ret, (ret == 0 ? 0 : -EINVAL));
|
||||||
return (ret == 0 ? 0 : EINVAL);
|
return (ret == 0 ? 0 : -EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ctrl_set_colfx(struct bm2835_mmal_dev *dev,
|
static int ctrl_set_colfx(struct bm2835_mmal_dev *dev,
|
||||||
@@ -600,7 +600,7 @@ static int ctrl_set_colfx(struct bm2835_mmal_dev *dev,
|
|||||||
"%s: After: mmal_ctrl:%p ctrl id:0x%x ctrl val:%d ret %d(%d)\n",
|
"%s: After: mmal_ctrl:%p ctrl id:0x%x ctrl val:%d ret %d(%d)\n",
|
||||||
__func__, mmal_ctrl, ctrl->id, ctrl->val, ret,
|
__func__, mmal_ctrl, ctrl->id, ctrl->val, ret,
|
||||||
(ret == 0 ? 0 : -EINVAL));
|
(ret == 0 ? 0 : -EINVAL));
|
||||||
return (ret == 0 ? 0 : EINVAL);
|
return (ret == 0 ? 0 : -EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ctrl_set_bitrate(struct bm2835_mmal_dev *dev,
|
static int ctrl_set_bitrate(struct bm2835_mmal_dev *dev,
|
||||||
|
|||||||
Reference in New Issue
Block a user