aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/pci/asihpi/hpifunc.c
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-05-14 16:50:05 +0200
committerTakashi Iwai <tiwai@suse.de>2010-05-17 08:10:34 +0200
commit1be1d76b8a1f622fd3a64778dfe117053f2af1f2 (patch)
tree589a35b6ae71b544d1f1a0590f176f16268ef1b0 /sound/pci/asihpi/hpifunc.c
parentALSA: asihpi: testing the wrong variable (diff)
downloadwireguard-linux-1be1d76b8a1f622fd3a64778dfe117053f2af1f2.tar.xz
wireguard-linux-1be1d76b8a1f622fd3a64778dfe117053f2af1f2.zip
ALSA: asihpi: incorrect range check
The entity_type_to_size[] array has LAST_ENTITY_TYPE (11) number of elements, not LAST_ENTITY_ROLE (17). This only affects the debug output. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/asihpi/hpifunc.c')
-rw-r--r--sound/pci/asihpi/hpifunc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/asihpi/hpifunc.c b/sound/pci/asihpi/hpifunc.c
index 15f0c7ea0e52..eda26b312324 100644
--- a/sound/pci/asihpi/hpifunc.c
+++ b/sound/pci/asihpi/hpifunc.c
@@ -3407,7 +3407,7 @@ u16 hpi_entity_alloc_and_pack(const enum e_entity_type type,
if (hE)
return hE;
- HPI_DEBUG_ASSERT(role > entity_role_null && type < LAST_ENTITY_ROLE);
+ HPI_DEBUG_ASSERT(role > entity_role_null && type < LAST_ENTITY_TYPE);
bytes_to_copy = entity_type_to_size[type] * item_count;
total_size = hpi_entity_header_size(*entity) + bytes_to_copy;