Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

V4L/DVB (7055): make tuner names consistent with standard cases

Change TDA9887 to tda9887.

TDA8290 shall reflect the actual hardware present in its name,
ie:

tda8295+18271
tda8290+8275a

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
0f2ce983 8cb93293

+3 -7
+2 -6
drivers/media/video/tda8290.c
··· 645 645 } 646 646 647 647 static struct analog_demod_ops tda8290_ops = { 648 - .info = { 649 - .name = "TDA8290", 650 - }, 651 648 .set_params = tda8290_set_params, 652 649 .has_signal = tda8290_has_signal, 653 650 .standby = tda8290_standby, ··· 653 656 }; 654 657 655 658 static struct analog_demod_ops tda8295_ops = { 656 - .info = { 657 - .name = "TDA8295", 658 - }, 659 659 .set_params = tda8295_set_params, 660 660 .has_signal = tda8295_has_signal, 661 661 .standby = tda8295_standby, ··· 724 730 goto fail; 725 731 } 726 732 tuner_info("type set to %s\n", name); 733 + 734 + fe->ops.analog_ops.info.name = name; 727 735 728 736 if (priv->ver & TDA8290) { 729 737 tda8290_init_tuner(fe);
+1 -1
drivers/media/video/tda9887.c
··· 650 650 651 651 static struct analog_demod_ops tda9887_ops = { 652 652 .info = { 653 - .name = "TDA9887", 653 + .name = "tda9887", 654 654 }, 655 655 .set_params = tda9887_set_params, 656 656 .standby = tda9887_standby,