[S390] drivers: Correct size given to memset
authorJulia Lawall <julia@diku.dk>
Fri, 18 Dec 2009 16:43:22 +0000 (17:43 +0100)
committerMartin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com>
Fri, 18 Dec 2009 16:43:32 +0000 (17:43 +0100)
commit83e56d0b23f91b70a7e708ce0979a57b6c6a1507
treebcfd461199eb4c551675ecd5bf5a9822231c482b
parentbb509912481214cf6ad1181c968295c62ff1ad9e
[S390] drivers: Correct size given to memset

Memset should be given the size of the structure, not the size of the pointer.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
type T;
T *x;
expression E;
@@

memset(x, E, sizeof(
+ *
 x))
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/cio/fcx.c