virtio_blk: add missing __dev{init,exit} markings

The remove member of the virtio_driver structure uses __devexit_p(), so
the remove function itself should be marked with __devexit.  And where
there be __devexit on the remove, so is there __devinit on the probe.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Mike Frysinger 2009-05-18 03:39:09 -04:00 committed by Rusty Russell
parent 9fa29b9df3
commit 98e9444474
1 changed files with 2 additions and 2 deletions

View File

@ -254,7 +254,7 @@ static int index_to_minor(int index)
return index << PART_BITS; return index << PART_BITS;
} }
static int virtblk_probe(struct virtio_device *vdev) static int __devinit virtblk_probe(struct virtio_device *vdev)
{ {
struct virtio_blk *vblk; struct virtio_blk *vblk;
int err; int err;
@ -395,7 +395,7 @@ out:
return err; return err;
} }
static void virtblk_remove(struct virtio_device *vdev) static void __devexit virtblk_remove(struct virtio_device *vdev)
{ {
struct virtio_blk *vblk = vdev->priv; struct virtio_blk *vblk = vdev->priv;