diff options
Diffstat (limited to 'drivers/pcmcia/omap_cf.c')
| -rw-r--r-- | drivers/pcmcia/omap_cf.c | 13 | 
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/pcmcia/omap_cf.c b/drivers/pcmcia/omap_cf.c index 3ef99155239..a7cfc7964c7 100644 --- a/drivers/pcmcia/omap_cf.c +++ b/drivers/pcmcia/omap_cf.c @@ -16,6 +16,7 @@  #include <linux/init.h>  #include <linux/delay.h>  #include <linux/interrupt.h> +#include <linux/slab.h>  #include <pcmcia/ss.h> @@ -330,24 +331,12 @@ static int __exit omap_cf_remove(struct platform_device *pdev)  	return 0;  } -static int omap_cf_suspend(struct platform_device *pdev, pm_message_t mesg) -{ -	return pcmcia_socket_dev_suspend(&pdev->dev); -} - -static int omap_cf_resume(struct platform_device *pdev) -{ -	return pcmcia_socket_dev_resume(&pdev->dev); -} -  static struct platform_driver omap_cf_driver = {  	.driver = {  		.name	= (char *) driver_name,  		.owner	= THIS_MODULE,  	},  	.remove		= __exit_p(omap_cf_remove), -	.suspend	= omap_cf_suspend, -	.resume		= omap_cf_resume,  };  static int __init omap_cf_init(void)  |