aboutsummaryrefslogtreecommitdiffstats
path: root/block/bsg.c
diff options
context:
space:
mode:
Diffstat (limited to 'block/bsg.c')
-rw-r--r--block/bsg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/block/bsg.c b/block/bsg.c
index dbe3ffd505ca..7c59ffaedfe0 100644
--- a/block/bsg.c
+++ b/block/bsg.c
@@ -710,11 +710,12 @@ static void bsg_kref_release_function(struct kref *kref)
710{ 710{
711 struct bsg_class_device *bcd = 711 struct bsg_class_device *bcd =
712 container_of(kref, struct bsg_class_device, ref); 712 container_of(kref, struct bsg_class_device, ref);
713 struct device *parent = bcd->parent;
713 714
714 if (bcd->release) 715 if (bcd->release)
715 bcd->release(bcd->parent); 716 bcd->release(bcd->parent);
716 717
717 put_device(bcd->parent); 718 put_device(parent);
718} 719}
719 720
720static int bsg_put_device(struct bsg_device *bd) 721static int bsg_put_device(struct bsg_device *bd)