aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/common/tuners/tda18271-fe.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/common/tuners/tda18271-fe.c')
-rw-r--r--drivers/media/common/tuners/tda18271-fe.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/media/common/tuners/tda18271-fe.c b/drivers/media/common/tuners/tda18271-fe.c
index f6328bf3121e..e86d16979e75 100644
--- a/drivers/media/common/tuners/tda18271-fe.c
+++ b/drivers/media/common/tuners/tda18271-fe.c
@@ -839,6 +839,21 @@ fail:
839 return ret; 839 return ret;
840} 840}
841 841
842static int tda18271_sleep(struct dvb_frontend *fe)
843{
844 struct tda18271_priv *priv = fe->tuner_priv;
845 int ret;
846
847 mutex_lock(&priv->lock);
848
849 /* enter standby mode, with required output features enabled */
850 ret = tda18271_toggle_output(fe, 1);
851
852 mutex_unlock(&priv->lock);
853
854 return ret;
855}
856
842/* ------------------------------------------------------------------ */ 857/* ------------------------------------------------------------------ */
843 858
844static int tda18271_agc(struct dvb_frontend *fe) 859static int tda18271_agc(struct dvb_frontend *fe)
@@ -1031,21 +1046,6 @@ fail:
1031 return ret; 1046 return ret;
1032} 1047}
1033 1048
1034static int tda18271_sleep(struct dvb_frontend *fe)
1035{
1036 struct tda18271_priv *priv = fe->tuner_priv;
1037 int ret;
1038
1039 mutex_lock(&priv->lock);
1040
1041 /* enter standby mode, with required output features enabled */
1042 ret = tda18271_toggle_output(fe, 1);
1043
1044 mutex_unlock(&priv->lock);
1045
1046 return ret;
1047}
1048
1049static int tda18271_release(struct dvb_frontend *fe) 1049static int tda18271_release(struct dvb_frontend *fe)
1050{ 1050{
1051 struct tda18271_priv *priv = fe->tuner_priv; 1051 struct tda18271_priv *priv = fe->tuner_priv;