mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 11:16:11 +00:00
mfd: don't use memzero
For it doesn't exist on i386. Cc: Ian Molton <spyro@f2s.com> Cc: Dmitry Baryshkov <dbaryshkov@gmail.com> Cc: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3d6f4a20cc
commit
c82dd5321c
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ static int mfd_add_device(struct platform_device *parent,
|
|||
if (ret)
|
||||
goto fail_device;
|
||||
|
||||
memzero(res, sizeof(res));
|
||||
memset(res, 0, sizeof(res));
|
||||
for (r = 0; r < cell->num_resources; r++) {
|
||||
res[r].name = cell->resources[r].name;
|
||||
res[r].flags = cell->resources[r].flags;
|
||||
|
|
Loading…
Reference in a new issue