2010-01-08 22:01:47

by Jamie Lokier

[permalink] [raw]
Subject: [PATCH] Add __devexit_p around reference to virtio_pci_remove

This is needed to compile with CONFIG_VIRTIO_PCI=y,
because virtio_pci_remove is marked __devexit.

Signed-off-by: Jamie Lokier <[email protected]>
---
drivers/virtio/virtio_pci.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c
index 28d9cf7..1d5191f 100644
--- a/drivers/virtio/virtio_pci.c
+++ b/drivers/virtio/virtio_pci.c
@@ -702,7 +702,7 @@ static struct pci_driver virtio_pci_driver = {
.name = "virtio-pci",
.id_table = virtio_pci_id_table,
.probe = virtio_pci_probe,
- .remove = virtio_pci_remove,
+ .remove = __devexit_p(virtio_pci_remove),
#ifdef CONFIG_PM
.suspend = virtio_pci_suspend,
.resume = virtio_pci_resume,
--
1.6.3.3


2010-01-12 11:51:20

by Rusty Russell

[permalink] [raw]
Subject: Re: [PATCH] Add __devexit_p around reference to virtio_pci_remove

On Sat, 9 Jan 2010 08:31:43 am Jamie Lokier wrote:
> This is needed to compile with CONFIG_VIRTIO_PCI=y,
> because virtio_pci_remove is marked __devexit.

Thanks applied.

Rusty.