]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - drivers/mmc/core/host.c
drivers/mmc/core/host.c: kmalloc + memset conversion to kzalloc
[karo-tx-linux.git] / drivers / mmc / core / host.c
index 6a7e29849603dd86e29242c81e6184b1bd6d7033..2c7ce8f43a9a60367a6f75397a7da831c3afe8d3 100644 (file)
@@ -58,12 +58,10 @@ struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
 {
        struct mmc_host *host;
 
-       host = kmalloc(sizeof(struct mmc_host) + extra, GFP_KERNEL);
+       host = kzalloc(sizeof(struct mmc_host) + extra, GFP_KERNEL);
        if (!host)
                return NULL;
 
-       memset(host, 0, sizeof(struct mmc_host) + extra);
-
        host->parent = dev;
        host->class_dev.parent = dev;
        host->class_dev.class = &mmc_host_class;