]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
clocksource: sh_mtu2: Replace kmalloc + memset with kzalloc
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tue, 4 Mar 2014 13:10:55 +0000 (14:10 +0100)
committerLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Wed, 16 Apr 2014 10:03:29 +0000 (12:03 +0200)
One kzalloc a day keeps the bugs away.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: Wolfram Sang <wsa@sang-engineering.com>
drivers/clocksource/sh_mtu2.c

index 61827c66f7d3695c4d9a4f4a30f797bbbae6b44a..94a53428a556beda71a3ded2b0fb6cc393e6385a 100644 (file)
@@ -241,8 +241,6 @@ static void sh_mtu2_register_clockevent(struct sh_mtu2_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->rating = rating;
@@ -279,7 +277,6 @@ static int sh_mtu2_setup_channel(struct sh_mtu2_channel *ch,
 {
        struct sh_timer_config *cfg = mtu->pdev->dev.platform_data;
 
-       memset(ch, 0, sizeof(*ch));
        ch->mtu = mtu;
        ch->index = cfg->timer_bit;
 
@@ -302,7 +299,6 @@ static int sh_mtu2_setup(struct sh_mtu2_device *mtu,
        int ret;
        ret = -ENXIO;
 
-       memset(mtu, 0, sizeof(*mtu));
        mtu->pdev = pdev;
 
        if (!cfg) {
@@ -373,7 +369,7 @@ static int sh_mtu2_probe(struct platform_device *pdev)
                goto out;
        }
 
-       mtu = kmalloc(sizeof(*mtu), GFP_KERNEL);
+       mtu = kzalloc(sizeof(*mtu), GFP_KERNEL);
        if (mtu == NULL) {
                dev_err(&pdev->dev, "failed to allocate driver data\n");
                return -ENOMEM;