fhci-hcd.c (300e812db26f4aa022e346f5fb9af1af134d98d8) | fhci-hcd.c (cc27c96c2bee93068bfc60ea6b09611d88cef429) |
---|---|
1/* 2 * Freescale QUICC Engine USB Host Controller Driver 3 * 4 * Copyright (c) Freescale Semicondutor, Inc. 2006. 5 * Shlomi Gridish <gridish@freescale.com> 6 * Jerry Huang <Chang-Ming.Huang@freescale.com> 7 * Copyright (c) Logic Product Development, Inc. 2007 8 * Peter Barada <peterb@logicpd.com> --- 810 unchanged lines hidden (view full) --- 819 .name = "fsl,usb-fhci", 820 .owner = THIS_MODULE, 821 .of_match_table = of_fhci_match, 822 }, 823 .probe = of_fhci_probe, 824 .remove = __devexit_p(of_fhci_remove), 825}; 826 | 1/* 2 * Freescale QUICC Engine USB Host Controller Driver 3 * 4 * Copyright (c) Freescale Semicondutor, Inc. 2006. 5 * Shlomi Gridish <gridish@freescale.com> 6 * Jerry Huang <Chang-Ming.Huang@freescale.com> 7 * Copyright (c) Logic Product Development, Inc. 2007 8 * Peter Barada <peterb@logicpd.com> --- 810 unchanged lines hidden (view full) --- 819 .name = "fsl,usb-fhci", 820 .owner = THIS_MODULE, 821 .of_match_table = of_fhci_match, 822 }, 823 .probe = of_fhci_probe, 824 .remove = __devexit_p(of_fhci_remove), 825}; 826 |
827static int __init fhci_module_init(void) 828{ 829 return platform_driver_register(&of_fhci_driver); 830} 831module_init(fhci_module_init); | 827module_platform_driver(of_fhci_driver); |
832 | 828 |
833static void __exit fhci_module_exit(void) 834{ 835 platform_driver_unregister(&of_fhci_driver); 836} 837module_exit(fhci_module_exit); 838 | |
839MODULE_DESCRIPTION("USB Freescale Host Controller Interface Driver"); 840MODULE_AUTHOR("Shlomi Gridish <gridish@freescale.com>, " 841 "Jerry Huang <Chang-Ming.Huang@freescale.com>, " 842 "Anton Vorontsov <avorontsov@ru.mvista.com>"); 843MODULE_LICENSE("GPL"); | 829MODULE_DESCRIPTION("USB Freescale Host Controller Interface Driver"); 830MODULE_AUTHOR("Shlomi Gridish <gridish@freescale.com>, " 831 "Jerry Huang <Chang-Ming.Huang@freescale.com>, " 832 "Anton Vorontsov <avorontsov@ru.mvista.com>"); 833MODULE_LICENSE("GPL"); |