From: Jim P. <jim...@us...> - 2001-11-26 20:17:38
|
Update of /cvsroot/linux-mips/linux/drivers/pcmcia In directory usw-pr-cvs1:/tmp/cvs-serv10500 Added Files: cs.c i82365.c Log Message: Imported from stock linux-2.4.14 tree --- NEW FILE: i82365.c --- /*====================================================================== Device driver for Intel 82365 and compatible PC Card controllers. i82365.c 1.265 1999/11/10 18:36:21 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The initial developer of the original code is David A. Hinds <dh...@pc...>. Portions created by David A. Hinds are Copyright (C) 1999 David A. Hinds. All Rights Reserved. [...1625 lines suppressed...] del_timer(&poll_timer); #ifdef CONFIG_ISA if (grab_irq != 0) free_irq(cs_irq, pcic_interrupt); #endif for (i = 0; i < sockets; i++) { /* Turn off all interrupt sources! */ i365_set(i, I365_CSCINT, 0); release_region(socket[i].ioaddr, 2); } #if defined(CONFIG_ISA) && defined(I82365_ISAPNP) if (i82365_pnpdev && i82365_pnpdev->deactivate) i82365_pnpdev->deactivate(i82365_pnpdev); #endif } /* exit_i82365 */ module_init(init_i82365); module_exit(exit_i82365); MODULE_LICENSE("Dual MPL/GPL"); /*====================================================================*/ |