Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f237de58 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Dominik Brodowski
Browse files

[PATCH] CONFIG_PM=n slim: drivers/pcmcia/*



Remove some code which is unneeded if CONFIG_PM=n.

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
parent ace7d477
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -41,6 +41,7 @@ static struct pci_device_id i82092aa_pci_ids[] = {
};
};
MODULE_DEVICE_TABLE(pci, i82092aa_pci_ids);
MODULE_DEVICE_TABLE(pci, i82092aa_pci_ids);


#ifdef CONFIG_PM
static int i82092aa_socket_suspend (struct pci_dev *dev, pm_message_t state)
static int i82092aa_socket_suspend (struct pci_dev *dev, pm_message_t state)
{
{
	return pcmcia_socket_dev_suspend(&dev->dev, state);
	return pcmcia_socket_dev_suspend(&dev->dev, state);
@@ -50,14 +51,17 @@ static int i82092aa_socket_resume (struct pci_dev *dev)
{
{
	return pcmcia_socket_dev_resume(&dev->dev);
	return pcmcia_socket_dev_resume(&dev->dev);
}
}
#endif


static struct pci_driver i82092aa_pci_drv = {
static struct pci_driver i82092aa_pci_drv = {
	.name           = "i82092aa",
	.name           = "i82092aa",
	.id_table       = i82092aa_pci_ids,
	.id_table       = i82092aa_pci_ids,
	.probe          = i82092aa_pci_probe,
	.probe          = i82092aa_pci_probe,
	.remove         = __devexit_p(i82092aa_pci_remove),
	.remove         = __devexit_p(i82092aa_pci_remove),
#ifdef CONFIG_PM
	.suspend        = i82092aa_socket_suspend,
	.suspend        = i82092aa_socket_suspend,
	.resume         = i82092aa_socket_resume,
	.resume         = i82092aa_socket_resume,
#endif
};
};




+4 −0
Original line number Original line Diff line number Diff line
@@ -755,6 +755,7 @@ static void __devexit pd6729_pci_remove(struct pci_dev *dev)
	kfree(socket);
	kfree(socket);
}
}


#ifdef CONFIG_PM
static int pd6729_socket_suspend(struct pci_dev *dev, pm_message_t state)
static int pd6729_socket_suspend(struct pci_dev *dev, pm_message_t state)
{
{
	return pcmcia_socket_dev_suspend(&dev->dev, state);
	return pcmcia_socket_dev_suspend(&dev->dev, state);
@@ -764,6 +765,7 @@ static int pd6729_socket_resume(struct pci_dev *dev)
{
{
	return pcmcia_socket_dev_resume(&dev->dev);
	return pcmcia_socket_dev_resume(&dev->dev);
}
}
#endif


static struct pci_device_id pd6729_pci_ids[] = {
static struct pci_device_id pd6729_pci_ids[] = {
	{
	{
@@ -781,8 +783,10 @@ static struct pci_driver pd6729_pci_drv = {
	.id_table	= pd6729_pci_ids,
	.id_table	= pd6729_pci_ids,
	.probe		= pd6729_pci_probe,
	.probe		= pd6729_pci_probe,
	.remove		= __devexit_p(pd6729_pci_remove),
	.remove		= __devexit_p(pd6729_pci_remove),
#ifdef CONFIG_PM
	.suspend	= pd6729_socket_suspend,
	.suspend	= pd6729_socket_suspend,
	.resume		= pd6729_socket_resume,
	.resume		= pd6729_socket_resume,
#endif
};
};


static int pd6729_module_init(void)
static int pd6729_module_init(void)
+4 −2
Original line number Original line Diff line number Diff line
@@ -1213,7 +1213,7 @@ static int __devinit yenta_probe (struct pci_dev *dev, const struct pci_device_i
	return ret;
	return ret;
}
}



#ifdef CONFIG_PM
static int yenta_dev_suspend (struct pci_dev *dev, pm_message_t state)
static int yenta_dev_suspend (struct pci_dev *dev, pm_message_t state)
{
{
	struct yenta_socket *socket = pci_get_drvdata(dev);
	struct yenta_socket *socket = pci_get_drvdata(dev);
@@ -1262,7 +1262,7 @@ static int yenta_dev_resume (struct pci_dev *dev)


	return pcmcia_socket_dev_resume(&dev->dev);
	return pcmcia_socket_dev_resume(&dev->dev);
}
}

#endif


#define CB_ID(vend,dev,type)				\
#define CB_ID(vend,dev,type)				\
	{						\
	{						\
@@ -1359,8 +1359,10 @@ static struct pci_driver yenta_cardbus_driver = {
	.id_table	= yenta_table,
	.id_table	= yenta_table,
	.probe		= yenta_probe,
	.probe		= yenta_probe,
	.remove		= __devexit_p(yenta_close),
	.remove		= __devexit_p(yenta_close),
#ifdef CONFIG_PM
	.suspend	= yenta_dev_suspend,
	.suspend	= yenta_dev_suspend,
	.resume		= yenta_dev_resume,
	.resume		= yenta_dev_resume,
#endif
};
};