diff options
author | Vinod Koul <vinod.koul@intel.com> | 2015-04-17 17:23:32 (GMT) |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-04-18 07:05:55 (GMT) |
commit | 43c499dc2778b96e21ed14e1a71e7b117a0b406f (patch) | |
tree | d4144f120f0a0e61e360bf667195f91e7a758329 /include | |
parent | f4d770317997f89bb6997ee3e8dd495cb8356ae9 (diff) | |
download | linux-43c499dc2778b96e21ed14e1a71e7b117a0b406f.tar.xz |
ALSA: asound.h - use SNDRV_CTL_ELEM_ID_NAME_MAXLEN
we have defined SNDRV_CTL_ELEM_ID_NAME_MAXLEN as size of name array so use
this define instead of numeric value
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/sound/asound.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/sound/asound.h b/include/uapi/sound/asound.h index 46145a5..a45be6b 100644 --- a/include/uapi/sound/asound.h +++ b/include/uapi/sound/asound.h @@ -864,7 +864,7 @@ struct snd_ctl_elem_id { snd_ctl_elem_iface_t iface; /* interface identifier */ unsigned int device; /* device/client number */ unsigned int subdevice; /* subdevice (substream) number */ - unsigned char name[44]; /* ASCII name of item */ + unsigned char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; /* ASCII name of item */ unsigned int index; /* index of item */ }; |