mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
tty: declare MODULE_FIRMWARE in various drivers
Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
02c95a62d8
commit
e6c4ef984e
6 changed files with 21 additions and 1 deletions
|
@ -4195,3 +4195,4 @@ module_exit(cy_cleanup_module);
|
|||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(CY_VERSION);
|
||||
MODULE_ALIAS_CHARDEV_MAJOR(CYCLADES_MAJOR);
|
||||
MODULE_FIRMWARE("cyzfirm.bin");
|
||||
|
|
|
@ -3209,3 +3209,5 @@ static struct pci_device_id ip2main_pci_tbl[] __devinitdata = {
|
|||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(pci, ip2main_pci_tbl);
|
||||
|
||||
MODULE_FIRMWARE("intelliport2.bin");
|
||||
|
|
|
@ -1720,3 +1720,8 @@ module_exit(isicom_exit);
|
|||
MODULE_AUTHOR("MultiTech");
|
||||
MODULE_DESCRIPTION("Driver for the ISI series of cards by MultiTech");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_FIRMWARE("isi608.bin");
|
||||
MODULE_FIRMWARE("isi608em.bin");
|
||||
MODULE_FIRMWARE("isi616em.bin");
|
||||
MODULE_FIRMWARE("isi4608.bin");
|
||||
MODULE_FIRMWARE("isi4616.bin");
|
||||
|
|
|
@ -172,6 +172,9 @@ static unsigned int numports[MAX_BOARDS];
|
|||
MODULE_AUTHOR("William Chen");
|
||||
MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_FIRMWARE("c218tunx.cod");
|
||||
MODULE_FIRMWARE("cp204unx.cod");
|
||||
MODULE_FIRMWARE("c320tunx.cod");
|
||||
|
||||
module_param_array(type, uint, NULL, 0);
|
||||
MODULE_PARM_DESC(type, "card type: C218=2, C320=4");
|
||||
|
|
|
@ -1654,4 +1654,6 @@ MODULE_DESCRIPTION("IBM iSeries Serial IOA driver");
|
|||
MODULE_SUPPORTED_DEVICE
|
||||
("IBM iSeries 2745, 2771, 2772, 2742, 2793 and 2805 Communications adapters");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
MODULE_FIRMWARE("icom_call_setup.bin");
|
||||
MODULE_FIRMWARE("icom_res_dce.bin");
|
||||
MODULE_FIRMWARE("icom_asc.bin");
|
||||
|
|
|
@ -789,6 +789,13 @@ static int keyspan_pda_fake_startup(struct usb_serial *serial)
|
|||
return 1;
|
||||
}
|
||||
|
||||
#ifdef KEYSPAN
|
||||
MODULE_FIRMWARE("keyspan_pda/keyspan_pda.fw");
|
||||
#endif
|
||||
#ifdef XIRCOM
|
||||
MODULE_FIRMWARE("keyspan_pda/xircom_pgs.fw");
|
||||
#endif
|
||||
|
||||
static int keyspan_pda_startup(struct usb_serial *serial)
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in a new issue