]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/md/dm-target.c
ext4: remove unused variable in ext4_get_parent
[linux-2.6-omap-h63xx.git] / drivers / md / dm-target.c
index 477a041a41cfa4601cb796ddf14df3dfcdbde562..835cf95b857fa6cbef32c0c6d0d474e03909221a 100644 (file)
@@ -88,12 +88,10 @@ void dm_put_target_type(struct target_type *t)
 
 static struct tt_internal *alloc_target(struct target_type *t)
 {
-       struct tt_internal *ti = kmalloc(sizeof(*ti), GFP_KERNEL);
+       struct tt_internal *ti = kzalloc(sizeof(*ti), GFP_KERNEL);
 
-       if (ti) {
-               memset(ti, 0, sizeof(*ti));
+       if (ti)
                ti->tt = *t;
-       }
 
        return ti;
 }