Lines Matching refs:fe
90 static int lnbh25_set_voltage(struct dvb_frontend *fe, in lnbh25_set_voltage() argument
96 struct lnbh25_priv *priv = fe->sec_priv; in lnbh25_set_voltage()
143 static void lnbh25_release(struct dvb_frontend *fe) in lnbh25_release() argument
145 struct lnbh25_priv *priv = fe->sec_priv; in lnbh25_release()
148 lnbh25_set_voltage(fe, SEC_VOLTAGE_OFF); in lnbh25_release()
149 kfree(fe->sec_priv); in lnbh25_release()
150 fe->sec_priv = NULL; in lnbh25_release()
153 struct dvb_frontend *lnbh25_attach(struct dvb_frontend *fe, in lnbh25_attach() argument
168 fe->sec_priv = priv; in lnbh25_attach()
169 if (lnbh25_set_voltage(fe, SEC_VOLTAGE_OFF)) { in lnbh25_attach()
174 fe->sec_priv = NULL; in lnbh25_attach()
178 fe->ops.release_sec = lnbh25_release; in lnbh25_attach()
179 fe->ops.set_voltage = lnbh25_set_voltage; in lnbh25_attach()
183 return fe; in lnbh25_attach()