From: Jan Beulich Date: Tue, 17 Jun 2008 08:47:08 +0000 (+0200) Subject: xen/blkfront: add __exit to module_exit() handlers X-Git-Tag: kvm-72rc1~7^2~21^2~27 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=5a60d0cd4ff227c4c5212898ecbeeaf5662eb5fa;p=users%2Fdwmw2%2Flinux.git xen/blkfront: add __exit to module_exit() handlers Signed-off-by: Jan Beulich Signed-off-by: Jeremy Fitzhardinge Signed-off-by: Jens Axboe --- diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c index a39b4b2b0c50a..b00682e573930 100644 --- a/drivers/block/xen-blkfront.c +++ b/drivers/block/xen-blkfront.c @@ -1045,7 +1045,7 @@ static int __init xlblk_init(void) module_init(xlblk_init); -static void xlblk_exit(void) +static void __exit xlblk_exit(void) { return xenbus_unregister_driver(&blkfront); }