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: v4.13~28832^2~27 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=5a60d0cd4ff227c4c5212898ecbeeaf5662eb5fa;p=mirror_ubuntu-bionic-kernel.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 a39b4b2b0c50..b00682e57393 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); }