[PATCH] wrong order of kzalloc arguments

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Al Viro 2007-02-09 16:05:07 +00:00 committed by Linus Torvalds
parent 6026179519
commit 35e00fbe48

View File

@ -296,7 +296,7 @@ static int bay_add(acpi_handle handle, int id)
/* /*
* Initialize bay device structure * Initialize bay device structure
*/ */
new_bay = kzalloc(GFP_ATOMIC, sizeof(*new_bay)); new_bay = kzalloc(sizeof(*new_bay), GFP_ATOMIC);
INIT_LIST_HEAD(&new_bay->list); INIT_LIST_HEAD(&new_bay->list);
new_bay->handle = handle; new_bay->handle = handle;
new_bay->name = (char *)nbuffer.pointer; new_bay->name = (char *)nbuffer.pointer;