Commit dc4af782 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Mauro Carvalho Chehab

[media] cx231xx: prints error code if can't switch TV mode

If something bad happens when switching between digital
and analog mode, prints an error and outputs the returned code.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 24b923f0
......@@ -746,7 +746,14 @@ int cx231xx_set_mode(struct cx231xx *dev, enum cx231xx_mode set_mode)
}
}
return errCode ? -EINVAL : 0;
if (errCode < 0) {
dev_err(dev->dev, "Failed to set devmode to %s: error: %i",
dev->mode == CX231XX_DIGITAL_MODE ? "digital" : "analog",
errCode);
return errCode;
}
return 0;
}
EXPORT_SYMBOL_GPL(cx231xx_set_mode);
......
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