V4L/DVB (3352): Cxusb: fix lgdt3303 naming

The following are specific to lgdt3303, and are being renamed to reflect this.
- cxusb_lgdt330x_config renamed to cxusb_lgdt3303_config.
- cxusb_lgdt330x_frontend_attach renamed to cxusb_lgdt3303_frontend_attach.

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>

authored by Michael Krufky and committed by Mauro Carvalho Chehab 27b547c3 ede22415

+4 -4
+4 -4
drivers/media/dvb/dvb-usb/cxusb.c
··· 282 .pll_set = dvb_usb_pll_set_i2c, 283 }; 284 285 - static struct lgdt330x_config cxusb_lgdt330x_config = { 286 .demod_address = 0x0e, 287 .demod_chip = LGDT3303, 288 .pll_set = dvb_usb_pll_set_i2c, ··· 357 return -EIO; 358 } 359 360 - static int cxusb_lgdt330x_frontend_attach(struct dvb_usb_device *d) 361 { 362 if (usb_set_interface(d->udev,0,7) < 0) 363 err("set interface failed"); 364 365 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); 366 367 - if ((d->fe = lgdt330x_attach(&cxusb_lgdt330x_config, &d->i2c_adap)) != NULL) 368 return 0; 369 370 return -EIO; ··· 506 507 .streaming_ctrl = cxusb_streaming_ctrl, 508 .power_ctrl = cxusb_power_ctrl, 509 - .frontend_attach = cxusb_lgdt330x_frontend_attach, 510 .tuner_attach = cxusb_lgh064f_tuner_attach, 511 512 .i2c_algo = &cxusb_i2c_algo,
··· 282 .pll_set = dvb_usb_pll_set_i2c, 283 }; 284 285 + static struct lgdt330x_config cxusb_lgdt3303_config = { 286 .demod_address = 0x0e, 287 .demod_chip = LGDT3303, 288 .pll_set = dvb_usb_pll_set_i2c, ··· 357 return -EIO; 358 } 359 360 + static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_device *d) 361 { 362 if (usb_set_interface(d->udev,0,7) < 0) 363 err("set interface failed"); 364 365 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); 366 367 + if ((d->fe = lgdt330x_attach(&cxusb_lgdt3303_config, &d->i2c_adap)) != NULL) 368 return 0; 369 370 return -EIO; ··· 506 507 .streaming_ctrl = cxusb_streaming_ctrl, 508 .power_ctrl = cxusb_power_ctrl, 509 + .frontend_attach = cxusb_lgdt3303_frontend_attach, 510 .tuner_attach = cxusb_lgh064f_tuner_attach, 511 512 .i2c_algo = &cxusb_i2c_algo,