diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-12-05 18:22:58 +0100 |
---|---|---|
committer | Hung-Te Lin <hungte@chromium.org> | 2020-12-17 13:54:24 +0000 |
commit | d425ddd10518b38fa107d3278cc483c036445a40 (patch) | |
tree | 08b6f917117149f0f3c2af7772bb4d012767183f /src/include | |
parent | fcf8a3a6a37014563b3623baa8e89f13f8587999 (diff) |
azalia: Make `azalia_find_verb` parametric
Allow to specify which table should the verb list be read from.
Change-Id: Id1bc40c4364cda848f416bad9eeab1b8ca3e9512
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48350
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/azalia_device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/azalia_device.h b/src/include/device/azalia_device.h index 4e0674e2e3..194572578f 100644 --- a/src/include/device/azalia_device.h +++ b/src/include/device/azalia_device.h @@ -19,7 +19,7 @@ #define HDA_ICII_VALID (1 << 1) int azalia_set_bits(void *port, u32 mask, u32 val); -u32 azalia_find_verb(u32 viddid, const u32 **verb); +u32 azalia_find_verb(const u32 *verb_table, u32 verb_table_bytes, u32 viddid, const u32 **verb); void azalia_audio_init(struct device *dev); extern struct device_operations default_azalia_audio_ops; |