Commit 129f5c52 authored by David S. Miller's avatar David S. Miller

[AMD7930]: Fix kcalloc() args.

parent 48a62a75
......@@ -968,7 +968,7 @@ static int __init snd_amd7930_create(snd_card_t *card,
int err;
*ramd = NULL;
amd = kcalloc(1, sizeof(*amd), 0, GFP_KERNEL);
amd = kcalloc(1, sizeof(*amd), GFP_KERNEL);
if (amd == NULL)
return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment