[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1473992353-7151-1-git-send-email-weiyj.lk@gmail.com>
Date: Fri, 16 Sep 2016 02:19:13 +0000
From: Wei Yongjun <weiyj.lk@...il.com>
To: Jason Cooper <jason@...edaemon.net>, Andrew Lunn <andrew@...n.ch>,
Sebastian Hesselbarth <sebastian.hesselbarth@...il.com>,
Gregory Clement <gregory.clement@...e-electrons.com>,
Russell King <linux@...linux.org.uk>,
Arnd Bergmann <arnd@...db.de>
Cc: Wei Yongjun <weiyongjun1@...wei.com>,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: [PATCH -next v2] ARM: orion: fix invalid use of sizeof in orion_ge00_switch_init()
From: Wei Yongjun <weiyongjun1@...wei.com>
sizeof() when applied to a pointer typed expression gives the
size of the pointer, not that of the pointed data.
Fixes: fe158a17c1e0 ("ARM: orion: simplify orion_ge00_switch_init")
Signed-off-by: Wei Yongjun <weiyongjun1@...wei.com>
---
v1 -> v2: fix file module name in subject
---
arch/arm/plat-orion/common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c
index 272f49b..23a975a 100644
--- a/arch/arm/plat-orion/common.c
+++ b/arch/arm/plat-orion/common.c
@@ -478,7 +478,7 @@ void __init orion_ge00_switch_init(struct dsa_platform_data *d)
for (i = 0; i < d->nr_chips; i++)
d->chip[i].host_dev = &orion_ge_mvmdio.dev;
- platform_device_register_data(NULL, "dsa", 0, d, sizeof(d));
+ platform_device_register_data(NULL, "dsa", 0, d, sizeof(*d));
}
/*****************************************************************************
Powered by blists - more mailing lists