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>
This commit is contained in:
parent
cba9a90053
commit
f447fd30af
@ -737,7 +737,8 @@ static int __init iss_net_setup(char *str)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((new = alloc_bootmem(sizeof new)) == NULL) {
|
new = alloc_bootmem(sizeof(*new));
|
||||||
|
if (new == NULL) {
|
||||||
printk("Alloc_bootmem failed\n");
|
printk("Alloc_bootmem failed\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user