aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/saa7164/saa7164-vbi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/saa7164/saa7164-vbi.c')
-rw-r--r--drivers/media/video/saa7164/saa7164-vbi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/saa7164/saa7164-vbi.c b/drivers/media/video/saa7164/saa7164-vbi.c
index 273cf807401c..d8e6c8f14079 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)
952 952
953 /* Stop the hardware, regardless */ 953 /* Stop the hardware, regardless */
954 result = saa7164_vbi_stop_port(port); 954 result = saa7164_vbi_stop_port(port);
955 if ((result != SAA_OK) && (result != SAA_ERR_ALREADY_STOPPED)) { 955 if (result != SAA_OK) {
956 printk(KERN_ERR "%s() pause/forced stop transition " 956 printk(KERN_ERR "%s() pause/forced stop transition "
957 "failed, res = 0x%x\n", __func__, result); 957 "failed, res = 0x%x\n", __func__, result);
958 } 958 }
@@ -971,7 +971,7 @@ static int saa7164_vbi_start_streaming(struct saa7164_port *port)
971 /* Stop the hardware, regardless */ 971 /* Stop the hardware, regardless */
972 result = saa7164_vbi_acquire_port(port); 972 result = saa7164_vbi_acquire_port(port);
973 result = saa7164_vbi_stop_port(port); 973 result = saa7164_vbi_stop_port(port);
974 if ((result != SAA_OK) && (result != SAA_ERR_ALREADY_STOPPED)) { 974 if (result != SAA_OK) {
975 printk(KERN_ERR "%s() run/forced stop transition " 975 printk(KERN_ERR "%s() run/forced stop transition "
976 "failed, res = 0x%x\n", __func__, result); 976 "failed, res = 0x%x\n", __func__, result);
977 } 977 }