1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00

[PATCH] aacraid: swapped kmalloc args.

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Dave Jones 2005-07-12 13:58:08 -07:00 committed by Linus Torvalds
parent d53d9f16ea
commit 4645df1035

View file

@ -469,7 +469,7 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg)
goto cleanup; goto cleanup;
} }
user_srbcmd = kmalloc(GFP_KERNEL, fibsize); user_srbcmd = kmalloc(fibsize, GFP_KERNEL);
if (!user_srbcmd) { if (!user_srbcmd) {
dprintk((KERN_DEBUG"aacraid: Could not make a copy of the srb\n")); dprintk((KERN_DEBUG"aacraid: Could not make a copy of the srb\n"));
rcode = -ENOMEM; rcode = -ENOMEM;