Skip to content

Commit

Permalink
ALSA: usbmixer - use MAX_ID_ELEMS where possible
Browse files Browse the repository at this point in the history
Signed-off-by: Jaroslav Kysela <[email protected]>
  • Loading branch information
perexg committed Feb 16, 2010
1 parent 7affdc1 commit 291186e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sound/usb/usbmixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ struct mixer_build {
struct usb_mixer_interface *mixer;
unsigned char *buffer;
unsigned int buflen;
DECLARE_BITMAP(unitbitmap, 256);
DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
struct usb_audio_term oterm;
const struct usbmix_name_map *map;
const struct usbmix_selector_map *selector_map;
Expand Down Expand Up @@ -2265,7 +2265,8 @@ int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
mixer->chip = chip;
mixer->ctrlif = ctrlif;
mixer->ignore_ctl_error = ignore_error;
mixer->id_elems = kcalloc(256, sizeof(*mixer->id_elems), GFP_KERNEL);
mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
GFP_KERNEL);
if (!mixer->id_elems) {
kfree(mixer);
return -ENOMEM;
Expand Down

0 comments on commit 291186e

Please sign in to comment.