V4L/DVB (7001): av7110: fix section mismatch

Fix driver data name to match whitelist of acceptable names that contain
pointers init data so that section mismatch warning is placated.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>

authored by Randy Dunlap and committed by Mauro Carvalho Chehab da517164 745a4c9f

+5 -5
+5 -5
drivers/media/dvb/ttpci/av7110.c
··· 2800 2800 } 2801 2801 2802 2802 2803 - static struct saa7146_extension av7110_extension; 2803 + static struct saa7146_extension av7110_extension_driver; 2804 2804 2805 2805 #define MAKE_AV7110_INFO(x_var,x_name) \ 2806 2806 static struct saa7146_pci_extension_data x_var = { \ 2807 2807 .ext_priv = x_name, \ 2808 - .ext = &av7110_extension } 2808 + .ext = &av7110_extension_driver } 2809 2809 2810 2810 MAKE_AV7110_INFO(tts_1_X_fsc,"Technotrend/Hauppauge WinTV DVB-S rev1.X or Fujitsu Siemens DVB-C"); 2811 2811 MAKE_AV7110_INFO(ttt_1_X, "Technotrend/Hauppauge WinTV DVB-T rev1.X"); ··· 2843 2843 MODULE_DEVICE_TABLE(pci, pci_tbl); 2844 2844 2845 2845 2846 - static struct saa7146_extension av7110_extension = { 2846 + static struct saa7146_extension av7110_extension_driver = { 2847 2847 .name = "dvb", 2848 2848 .flags = SAA7146_USE_I2C_IRQ, 2849 2849 ··· 2860 2860 static int __init av7110_init(void) 2861 2861 { 2862 2862 int retval; 2863 - retval = saa7146_register_extension(&av7110_extension); 2863 + retval = saa7146_register_extension(&av7110_extension_driver); 2864 2864 return retval; 2865 2865 } 2866 2866 2867 2867 2868 2868 static void __exit av7110_exit(void) 2869 2869 { 2870 - saa7146_unregister_extension(&av7110_extension); 2870 + saa7146_unregister_extension(&av7110_extension_driver); 2871 2871 } 2872 2872 2873 2873 module_init(av7110_init);