9480e307cd
In PM v1, all devices were called at SUSPEND_DISABLE level. Then all devices were called at SUSPEND_SAVE_STATE level, and finally SUSPEND_POWER_DOWN level. However, with PM v2, to maintain compatibility for platform devices, I arranged for the PM v2 suspend/resume callbacks to call the old PM v1 suspend/resume callbacks three times with each level in order so that existing drivers continued to work. Since this is obsolete infrastructure which is no longer necessary, we can remove it. Here's an (untested) patch to do exactly that. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
115 lines
3.4 KiB
C
115 lines
3.4 KiB
C
/*======================================================================
|
|
|
|
Device driver for the PCMCIA control functionality of StrongARM
|
|
SA-1100 microprocessors.
|
|
|
|
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 John G. Dorsey
|
|
<john+@cs.cmu.edu>. Portions created by John G. Dorsey are
|
|
Copyright (C) 1999 John G. Dorsey. All Rights Reserved.
|
|
|
|
Alternatively, the contents of this file may be used under the
|
|
terms of the GNU Public License version 2 (the "GPL"), in which
|
|
case the provisions of the GPL are applicable instead of the
|
|
above. If you wish to allow the use of your version of this file
|
|
only under the terms of the GPL and not to allow others to use
|
|
your version of this file under the MPL, indicate your decision
|
|
by deleting the provisions above and replace them with the notice
|
|
and other provisions required by the GPL. If you do not delete
|
|
the provisions above, a recipient may use your version of this
|
|
file under either the MPL or the GPL.
|
|
|
|
======================================================================*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/config.h>
|
|
|
|
#include <pcmcia/cs_types.h>
|
|
#include <pcmcia/cs.h>
|
|
#include <pcmcia/ss.h>
|
|
|
|
#include "sa1100_generic.h"
|
|
|
|
static int (*sa11x0_pcmcia_hw_init[])(struct device *dev) = {
|
|
#ifdef CONFIG_SA1100_ASSABET
|
|
pcmcia_assabet_init,
|
|
#endif
|
|
#ifdef CONFIG_SA1100_CERF
|
|
pcmcia_cerf_init,
|
|
#endif
|
|
#ifdef CONFIG_SA1100_H3600
|
|
pcmcia_h3600_init,
|
|
#endif
|
|
#ifdef CONFIG_SA1100_SHANNON
|
|
pcmcia_shannon_init,
|
|
#endif
|
|
#ifdef CONFIG_SA1100_SIMPAD
|
|
pcmcia_simpad_init,
|
|
#endif
|
|
};
|
|
|
|
static int sa11x0_drv_pcmcia_probe(struct device *dev)
|
|
{
|
|
int i, ret = -ENODEV;
|
|
|
|
/*
|
|
* Initialise any "on-board" PCMCIA sockets.
|
|
*/
|
|
for (i = 0; i < ARRAY_SIZE(sa11x0_pcmcia_hw_init); i++) {
|
|
ret = sa11x0_pcmcia_hw_init[i](dev);
|
|
if (ret == 0)
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static struct device_driver sa11x0_pcmcia_driver = {
|
|
.probe = sa11x0_drv_pcmcia_probe,
|
|
.remove = soc_common_drv_pcmcia_remove,
|
|
.name = "sa11x0-pcmcia",
|
|
.bus = &platform_bus_type,
|
|
.suspend = pcmcia_socket_dev_suspend,
|
|
.resume = pcmcia_socket_dev_resume,
|
|
};
|
|
|
|
/* sa11x0_pcmcia_init()
|
|
* ^^^^^^^^^^^^^^^^^^^^
|
|
*
|
|
* This routine performs low-level PCMCIA initialization and then
|
|
* registers this socket driver with Card Services.
|
|
*
|
|
* Returns: 0 on success, -ve error code on failure
|
|
*/
|
|
static int __init sa11x0_pcmcia_init(void)
|
|
{
|
|
return driver_register(&sa11x0_pcmcia_driver);
|
|
}
|
|
|
|
/* sa11x0_pcmcia_exit()
|
|
* ^^^^^^^^^^^^^^^^^^^^
|
|
* Invokes the low-level kernel service to free IRQs associated with this
|
|
* socket controller and reset GPIO edge detection.
|
|
*/
|
|
static void __exit sa11x0_pcmcia_exit(void)
|
|
{
|
|
driver_unregister(&sa11x0_pcmcia_driver);
|
|
}
|
|
|
|
MODULE_AUTHOR("John Dorsey <john+@cs.cmu.edu>");
|
|
MODULE_DESCRIPTION("Linux PCMCIA Card Services: SA-11x0 Socket Controller");
|
|
MODULE_LICENSE("Dual MPL/GPL");
|
|
|
|
fs_initcall(sa11x0_pcmcia_init);
|
|
module_exit(sa11x0_pcmcia_exit);
|