From: Mauro Carvalho Chehab <mche...@osg.samsung.com>

If something bad happens when switching between digital
and analog mode, prints an error and outputs the returned code.

Signed-off-by: Mauro Carvalho Chehab <mche...@osg.samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@s-opensource.com>
---
 drivers/media/usb/cx231xx/cx231xx-core.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/drivers/media/usb/cx231xx/cx231xx-core.c 
b/drivers/media/usb/cx231xx/cx231xx-core.c
index 6c8f825452dd..4b3acbd1d7f0 100644
--- a/drivers/media/usb/cx231xx/cx231xx-core.c
+++ b/drivers/media/usb/cx231xx/cx231xx-core.c
@@ -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);
 
-- 
2.7.4


--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to