This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/media_tree.git tree:

Subject: [media] saa7164: saa7164_vbi_stop_port() returns linux error codes
Author:  Dan Carpenter <[email protected]>
Date:    Fri Apr 20 02:50:45 2012 -0300

The saa7164_vbi_stop_port() changes the SAA_ERR_ALREADY_STOPPED result
code to -EIO before returning.

Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/video/saa7164/saa7164-vbi.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

---

http://git.linuxtv.org/media_tree.git?a=commitdiff;h=2e71064f2f9009c6ef672abc4f9160d16a3d50bd

diff --git a/drivers/media/video/saa7164/saa7164-vbi.c 
b/drivers/media/video/saa7164/saa7164-vbi.c
index 273cf80..d8e6c8f 100644
--- a/drivers/media/video/saa7164/saa7164-vbi.c
+++ b/drivers/media/video/saa7164/saa7164-vbi.c
@@ -952,7 +952,7 @@ static int saa7164_vbi_start_streaming(struct saa7164_port 
*port)
 
                /* Stop the hardware, regardless */
                result = saa7164_vbi_stop_port(port);
-               if ((result != SAA_OK) && (result != SAA_ERR_ALREADY_STOPPED)) {
+               if (result != SAA_OK) {
                        printk(KERN_ERR "%s() pause/forced stop transition "
                                "failed, res = 0x%x\n", __func__, result);
                }
@@ -971,7 +971,7 @@ static int saa7164_vbi_start_streaming(struct saa7164_port 
*port)
                /* Stop the hardware, regardless */
                result = saa7164_vbi_acquire_port(port);
                result = saa7164_vbi_stop_port(port);
-               if ((result != SAA_OK) && (result != SAA_ERR_ALREADY_STOPPED)) {
+               if (result != SAA_OK) {
                        printk(KERN_ERR "%s() run/forced stop transition "
                                "failed, res = 0x%x\n", __func__, result);
                }

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to