diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-11-10 18:10:38 +0100 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2021-11-11 22:45:04 +0000 |
commit | aae6b55b2db351c9a6bd267bbfe63a4ac2594dc0 (patch) | |
tree | bb95f8702ab32f6101f9360e339ed18695283f07 /src/include/device/azalia_device.h | |
parent | 94b3735ce19ba1c551108a87f0c6188980e33e5f (diff) |
device/azalia_device: Drop unused function parameter
The `dev` parameter of the `azalia_codecs_init()` function is not used.
Remove it, and update all call sites accordingly.
Change-Id: Idbe4a6ee5e81d5a7fd451fb83e0fe91bd0c09f0e
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59119
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/device/azalia_device.h')
-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 d717fdd7ef..1562e25c48 100644 --- a/src/include/device/azalia_device.h +++ b/src/include/device/azalia_device.h @@ -24,7 +24,7 @@ int azalia_exit_reset(u8 *base); u32 azalia_find_verb(const u32 *verb_table, u32 verb_table_bytes, u32 viddid, const u32 **verb); int azalia_program_verb_table(u8 *base, const u32 *verbs, u32 verb_size); void azalia_codec_init(u8 *base, int addr, const u32 *verb_table, u32 verb_table_bytes); -void azalia_codecs_init(struct device *dev, u8 *base, u16 codec_mask); +void azalia_codecs_init(u8 *base, u16 codec_mask); void azalia_audio_init(struct device *dev); extern struct device_operations default_azalia_audio_ops; |