Skip to content

Commit

Permalink
move virtballoon_remove to .devexit.text
Browse files Browse the repository at this point in the history
The function virtballoon_remove is used only wrapped by __devexit_p so
define it using __devexit.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
  • Loading branch information
Uwe Kleine-König authored and Rusty Russell committed Oct 22, 2009
1 parent 3225bea commit 1e65175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/virtio/virtio_balloon.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ static int virtballoon_probe(struct virtio_device *vdev)
return err;
}

static void virtballoon_remove(struct virtio_device *vdev)
static void __devexit virtballoon_remove(struct virtio_device *vdev)
{
struct virtio_balloon *vb = vdev->priv;

Expand Down

0 comments on commit 1e65175

Please sign in to comment.