Commit e1e9e510 authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] af9015: correct few error codes

Plain '-1' is not very good error code. Use more suitable error
code definitions.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 2e35c66f
...@@ -71,7 +71,7 @@ static int af9015_ctrl_msg(struct dvb_usb_device *d, struct req_t *req) ...@@ -71,7 +71,7 @@ static int af9015_ctrl_msg(struct dvb_usb_device *d, struct req_t *req)
default: default:
dev_err(&d->udev->dev, "%s: unknown command=%d\n", dev_err(&d->udev->dev, "%s: unknown command=%d\n",
KBUILD_MODNAME, req->cmd); KBUILD_MODNAME, req->cmd);
ret = -1; ret = -EIO;
goto error; goto error;
} }
...@@ -107,7 +107,7 @@ static int af9015_ctrl_msg(struct dvb_usb_device *d, struct req_t *req) ...@@ -107,7 +107,7 @@ static int af9015_ctrl_msg(struct dvb_usb_device *d, struct req_t *req)
if (rlen && buf[1]) { if (rlen && buf[1]) {
dev_err(&d->udev->dev, "%s: command failed=%d\n", dev_err(&d->udev->dev, "%s: command failed=%d\n",
KBUILD_MODNAME, buf[1]); KBUILD_MODNAME, buf[1]);
ret = -1; ret = -EIO;
goto error; goto error;
} }
...@@ -791,11 +791,11 @@ static int af9015_copy_firmware(struct dvb_usb_device *d) ...@@ -791,11 +791,11 @@ static int af9015_copy_firmware(struct dvb_usb_device *d)
if (val == 0x04) { if (val == 0x04) {
dev_err(&d->udev->dev, "%s: firmware did not run\n", dev_err(&d->udev->dev, "%s: firmware did not run\n",
KBUILD_MODNAME); KBUILD_MODNAME);
ret = -1; ret = -ETIMEDOUT;
} else if (val != 0x0c) { } else if (val != 0x0c) {
dev_err(&d->udev->dev, "%s: firmware boot timeout\n", dev_err(&d->udev->dev, "%s: firmware boot timeout\n",
KBUILD_MODNAME); KBUILD_MODNAME);
ret = -1; ret = -ETIMEDOUT;
} }
error: error:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment