device/azalia_device: Export codecs_init()
Make the `codecs_init()` function non-static so that it can be used in other places. Rename it to `azalia_codecs_init()` to avoid name clashes with static definitions in southbridge code (which will be removed in subsequent commits). Change-Id: I080a73102b0c4f9f8a283cd93bba9b3b23169be0 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59108 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
committed by
Paul Fagerburg
parent
18d616a8fe
commit
42552ca902
@@ -267,7 +267,7 @@ static void codec_init(struct device *dev, u8 *base, int addr)
|
||||
mainboard_azalia_program_runtime_verbs(base, reg32);
|
||||
}
|
||||
|
||||
static void codecs_init(struct device *dev, u8 *base, u16 codec_mask)
|
||||
void azalia_codecs_init(struct device *dev, u8 *base, u16 codec_mask)
|
||||
{
|
||||
int i;
|
||||
|
||||
@@ -297,7 +297,7 @@ void azalia_audio_init(struct device *dev)
|
||||
|
||||
if (codec_mask) {
|
||||
printk(BIOS_DEBUG, "azalia_audio: codec_mask = %02x\n", codec_mask);
|
||||
codecs_init(dev, base, codec_mask);
|
||||
azalia_codecs_init(dev, base, codec_mask);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user