Commit ff07eb897a97640b7ac0262cd50311ad403038f8

Authored by Uwe Kleine-König
Committed by Rusty Russell
1 parent 1e65175c2c

move virtrng_remove to .devexit.text

The function virtrng_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>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/char/hw_random/virtio-rng.c
... ... @@ -116,7 +116,7 @@
116 116 return 0;
117 117 }
118 118  
119   -static void virtrng_remove(struct virtio_device *vdev)
  119 +static void __devexit virtrng_remove(struct virtio_device *vdev)
120 120 {
121 121 vdev->config->reset(vdev);
122 122 hwrng_unregister(&virtio_hwrng);