azalia: Drop unused parameter from azalia_find_verb

The `dev` parameter isn't used anywhere.

Change-Id: I05643f8201137ffe89ded1e3f989c5a0f04e0af1
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48349
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
Angel Pons 2020-12-05 18:19:30 +01:00 committed by Hung-Te Lin
commit fcf8a3a6a3
7 changed files with 8 additions and 8 deletions

View file

@ -19,7 +19,7 @@
#define HDA_ICII_VALID (1 << 1)
int azalia_set_bits(void *port, u32 mask, u32 val);
u32 azalia_find_verb(struct device *dev, u32 viddid, const u32 **verb);
u32 azalia_find_verb(u32 viddid, const u32 **verb);
void azalia_audio_init(struct device *dev);
extern struct device_operations default_azalia_audio_ops;