diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-06-17 10:47:08 +0200 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-07-03 13:21:13 +0200 |
commit | 5a60d0cd4ff227c4c5212898ecbeeaf5662eb5fa (patch) | |
tree | ce2b2ae5b631c8cac52619acee27fd83d39f742a /drivers/block | |
parent | 04c0635058256e2f4618139c237e56b5a4bdbb8f (diff) | |
download | op-kernel-dev-5a60d0cd4ff227c4c5212898ecbeeaf5662eb5fa.zip op-kernel-dev-5a60d0cd4ff227c4c5212898ecbeeaf5662eb5fa.tar.gz |
xen/blkfront: add __exit to module_exit() handlers
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/xen-blkfront.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c index a39b4b2..b00682e 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); } |