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