aboutsummaryrefslogtreecommitdiff
path: root/arch/xtensa/platforms
diff options
context:
space:
mode:
authorThomas Meyer <thomas@m3y3r.de>2013-09-19 23:42:22 +0200
committerChris Zankel <chris@zankel.net>2013-10-16 11:48:31 -0700
commitf447fd30afdbb40c913054edaacf1a32df7a55d7 (patch)
treeb46119d85cb7b6b3c0ddb2f1c642eb32dce275a5 /arch/xtensa/platforms
parentcba9a90053e3b7973eff4f1946f33032e98eeed5 (diff)
xtensa: Cocci spatch "noderef"
sizeof when applied to a pointer typed expression gives the size of the pointer. Found by coccinelle spatch "misc/noderef.cocci" Signed-off-by: Thomas Meyer <thomas@m3y3r.de> Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/platforms')
-rw-r--r--arch/xtensa/platforms/iss/network.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/xtensa/platforms/iss/network.c b/arch/xtensa/platforms/iss/network.c
index 56f88b7afe2f..e9e1aad8c271 100644
--- a/arch/xtensa/platforms/iss/network.c
+++ b/arch/xtensa/platforms/iss/network.c
@@ -737,7 +737,8 @@ static int __init iss_net_setup(char *str)
return 1;
}
- if ((new = alloc_bootmem(sizeof new)) == NULL) {
+ new = alloc_bootmem(sizeof(*new));
+ if (new == NULL) {
printk("Alloc_bootmem failed\n");
return 1;
}