ALSA: correct kcalloc usage
authorMilton Miller <miltonm@bga.com>
Sun, 13 Jul 2008 11:58:12 +0000 (13:58 +0200)
committerJaroslav Kysela <perex@perex.cz>
Mon, 14 Jul 2008 07:01:09 +0000 (09:01 +0200)
kcalloc is supposed to be called with the count as its first argument and the
element size as the second.

Both arguments are size_t so does not affect correctness.  This callsite is
during module_init and therefore not performance critical.  Another patch will
optimize the case when the count is variable but the size is fixed.

Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>

No differences found