Update of /cvsroot/linux-mips/linux/drivers/pcmcia
In directory usw-pr-cvs1:/tmp/cvs-serv14415/drivers/pcmcia
Added Files:
cs.c
Log Message:
Added new files from the stock kernel in order to
be able to apply the Au1000 pcmcia patch.
--- NEW FILE: cs.c ---
/*======================================================================
Kernel Card Services -- core services
cs.c 1.271 2000/10/02 20:27:49
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
<da...@us...>. Portions created by David A. Hinds
are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
[...2399 lines suppressed...]
}
static void __exit exit_pcmcia_cs(void)
{
printk(KERN_INFO "unloading Kernel Card Services\n");
#ifdef CONFIG_PROC_FS
if (proc_pccard) {
remove_proc_entry("pccard", proc_bus);
}
#endif
if (do_apm)
pm_unregister_all(handle_pm_event);
release_resource_db();
}
module_init(init_pcmcia_cs);
module_exit(exit_pcmcia_cs);
/*====================================================================*/
|