[media] opera1: fix ERROR: do not use assignment in if condition

Signed-off-by: Michael Krufky <mkrufky@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Michael Krufky 2011-09-17 15:03:26 -03:00 committed by Mauro Carvalho Chehab
parent d12f51aa7b
commit ee03a6795e

View File

@ -263,9 +263,9 @@ static struct stv0299_config opera1_stv0299_config = {
static int opera1_frontend_attach(struct dvb_usb_adapter *d) static int opera1_frontend_attach(struct dvb_usb_adapter *d)
{ {
if ((d->fe_adap[0].fe = d->fe_adap[0].fe = dvb_attach(stv0299_attach, &opera1_stv0299_config,
dvb_attach(stv0299_attach, &opera1_stv0299_config, &d->dev->i2c_adap);
&d->dev->i2c_adap)) != NULL) { if ((d->fe_adap[0].fe) != NULL) {
d->fe_adap[0].fe->ops.set_voltage = opera1_set_voltage; d->fe_adap[0].fe->ops.set_voltage = opera1_set_voltage;
return 0; return 0;
} }