Commit 2a776313 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab

[media] dib0700: fix ERROR: space required after that ','

Signed-off-by: default avatarMichael Krufky <mkrufky@kernellabs.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 9a9677af
...@@ -280,8 +280,10 @@ static int stk7700P2_frontend_attach(struct dvb_usb_adapter *adap) ...@@ -280,8 +280,10 @@ static int stk7700P2_frontend_attach(struct dvb_usb_adapter *adap)
} }
} }
adap->fe_adap[0].fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,0x80+(adap->id << 1), adap->fe_adap[0].fe =
&stk7700d_dib7000p_mt2266_config[adap->id]); dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,
0x80 + (adap->id << 1),
&stk7700d_dib7000p_mt2266_config[adap->id]);
return adap->fe_adap[0].fe == NULL ? -ENODEV : 0; return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
} }
...@@ -307,8 +309,10 @@ static int stk7700d_frontend_attach(struct dvb_usb_adapter *adap) ...@@ -307,8 +309,10 @@ static int stk7700d_frontend_attach(struct dvb_usb_adapter *adap)
} }
} }
adap->fe_adap[0].fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,0x80+(adap->id << 1), adap->fe_adap[0].fe =
&stk7700d_dib7000p_mt2266_config[adap->id]); dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,
0x80 + (adap->id << 1),
&stk7700d_dib7000p_mt2266_config[adap->id]);
return adap->fe_adap[0].fe == NULL ? -ENODEV : 0; return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment