diff options
author | Burman Yan <yan_952@hotmail.com> | 2006-11-15 14:10:29 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-11-28 18:47:21 -0500 |
commit | 95b93a0cd46682c6d9e8eea803fda510cb6b863a (patch) | |
tree | 7e430d3fc04ed20791187d144730dd3052292c67 /drivers/mtd/maps/plat-ram.c | |
parent | 998a43e72d20afa7566dad66fd866fe939a89c09 (diff) |
[MTD] replace kmalloc+memset with kzalloc
Signed-off-by: Yan Burman <yan_952@hotmail.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/maps/plat-ram.c')
-rw-r--r-- | drivers/mtd/maps/plat-ram.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/maps/plat-ram.c b/drivers/mtd/maps/plat-ram.c index 5d3c75451ca2..2b6504ecbbd1 100644 --- a/drivers/mtd/maps/plat-ram.c +++ b/drivers/mtd/maps/plat-ram.c | |||
@@ -147,14 +147,13 @@ static int platram_probe(struct platform_device *pdev) | |||
147 | 147 | ||
148 | pdata = pdev->dev.platform_data; | 148 | pdata = pdev->dev.platform_data; |
149 | 149 | ||
150 | info = kmalloc(sizeof(*info), GFP_KERNEL); | 150 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
151 | if (info == NULL) { | 151 | if (info == NULL) { |
152 | dev_err(&pdev->dev, "no memory for flash info\n"); | 152 | dev_err(&pdev->dev, "no memory for flash info\n"); |
153 | err = -ENOMEM; | 153 | err = -ENOMEM; |
154 | goto exit_error; | 154 | goto exit_error; |
155 | } | 155 | } |
156 | 156 | ||
157 | memset(info, 0, sizeof(*info)); | ||
158 | platform_set_drvdata(pdev, info); | 157 | platform_set_drvdata(pdev, info); |
159 | 158 | ||
160 | info->dev = &pdev->dev; | 159 | info->dev = &pdev->dev; |