summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
Diffstat (limited to 'block')
-rw-r--r--block/badblocks.c6
-rw-r--r--block/genhd.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/block/badblocks.c b/block/badblocks.c
index 96aeb9194a2ef..fabf6b64c2d17 100644
--- a/block/badblocks.c
+++ b/block/badblocks.c
@@ -550,12 +550,12 @@ int badblocks_init(struct badblocks *bb, int enable)
EXPORT_SYMBOL_GPL(badblocks_init);
/**
- * badblocks_free() - free the badblocks structure
+ * badblocks_exit() - free the badblocks structure
* @bb: the badblocks structure that holds all badblock information
*/
-void badblocks_free(struct badblocks *bb)
+void badblocks_exit(struct badblocks *bb)
{
kfree(bb->page);
bb->page = NULL;
}
-EXPORT_SYMBOL_GPL(badblocks_free);
+EXPORT_SYMBOL_GPL(badblocks_exit);
diff --git a/block/genhd.c b/block/genhd.c
index 88579cf373b8b..f463c67e6ba26 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -671,7 +671,7 @@ void del_gendisk(struct gendisk *disk)
blk_unregister_region(disk_devt(disk), disk->minors);
if (disk->bb) {
- badblocks_free(disk->bb);
+ badblocks_exit(disk->bb);
kfree(disk->bb);
}