diff mbox

[77/79,media] drx-j: disable OOB

Message ID 1393841233-24840-78-git-send-email-m.chehab@samsung.com (mailing list archive)
State New, archived
Headers show

Commit Message

Mauro Carvalho Chehab March 3, 2014, 10:07 a.m. UTC
Just like the windows driver, disable OOB after setting the driver
version.

Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
---
 drivers/media/dvb-frontends/drx39xyj/drxj.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/drivers/media/dvb-frontends/drx39xyj/drxj.c b/drivers/media/dvb-frontends/drx39xyj/drxj.c
index 585d891392c3..f7c57c971f8f 100644
--- a/drivers/media/dvb-frontends/drx39xyj/drxj.c
+++ b/drivers/media/dvb-frontends/drx39xyj/drxj.c
@@ -16676,7 +16676,6 @@  rw_error:
 /* Coefficients for the nyquist fitler (total: 27 taps) */
 #define NYQFILTERLEN 27
 
-#if 0
 static int ctrl_set_oob(struct drx_demod_instance *demod, struct drxoob *oob_param)
 {
 	int rc;
@@ -17177,6 +17176,8 @@  rw_error:
 	return -EIO;
 }
 
+#if 0
+
 /**
 * \fn int ctrl_get_oob()
 * \brief Set modulation standard to be used.
@@ -20026,6 +20027,12 @@  int drxj_open(struct drx_demod_instance *demod)
 		goto rw_error;
 	}
 
+	rc = ctrl_set_oob(demod, NULL);
+	if (rc != 0) {
+		pr_err("error %d\n", rc);
+		goto rw_error;
+	}
+
 	/* refresh the audio data structure with default */
 	ext_attr->aud_data = drxj_default_aud_data_g;