]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
clocksource: sh_tmu: Replace kmalloc + memset with kzalloc
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Mon, 27 Jan 2014 21:04:17 +0000 (22:04 +0100)
committerLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Wed, 16 Apr 2014 10:03:20 +0000 (12:03 +0200)
One kzalloc a day keeps the bugs away.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
drivers/clocksource/sh_tmu.c

index e30430439bb1c75483db254f7349d8562f03ebfe..26a9f7dadfbcefee47b599b1dc309674c2380384 100644 (file)
@@ -397,8 +397,6 @@ static void sh_tmu_register_clockevent(struct sh_tmu_channel *ch,
        struct clock_event_device *ced = &ch->ced;
        int ret;
 
-       memset(ced, 0, sizeof(*ced));
-
        ced->name = name;
        ced->features = CLOCK_EVT_FEAT_PERIODIC;
        ced->features |= CLOCK_EVT_FEAT_ONESHOT;
@@ -441,7 +439,6 @@ static int sh_tmu_channel_setup(struct sh_tmu_channel *ch,
 {
        struct sh_timer_config *cfg = tmu->pdev->dev.platform_data;
 
-       memset(ch, 0, sizeof(*ch));
        ch->tmu = tmu;
 
        /*
@@ -475,7 +472,6 @@ static int sh_tmu_setup(struct sh_tmu_device *tmu, struct platform_device *pdev)
        int ret;
        ret = -ENXIO;
 
-       memset(tmu, 0, sizeof(*tmu));
        tmu->pdev = pdev;
 
        if (!cfg) {
@@ -547,7 +543,7 @@ static int sh_tmu_probe(struct platform_device *pdev)
                goto out;
        }
 
-       tmu = kmalloc(sizeof(*tmu), GFP_KERNEL);
+       tmu = kzalloc(sizeof(*tmu), GFP_KERNEL);
        if (tmu == NULL) {
                dev_err(&pdev->dev, "failed to allocate driver data\n");
                return -ENOMEM;