soc/intel/common/hda_verb.c: Clarify mask usage
The `azalia_set_bits` will mask out all bits, so just use zero for clarity. The resulting behavior is the same in both cases. Change-Id: I27777f1e836fa973859629d48964060bec02c87a Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48357 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
This commit is contained in:
parent
ac857ca3b1
commit
a1a317ebf6
|
@ -24,7 +24,7 @@ int hda_codec_detect(u8 *base)
|
|||
write8(base + HDA_STATESTS_REG, 0xf);
|
||||
|
||||
/* Turn off the link and poll RESET# bit until it reads back as 0 */
|
||||
if (azalia_set_bits(base + HDA_GCTL_REG, HDA_GCTL_CRST, ~HDA_GCTL_CRST) < 0)
|
||||
if (azalia_set_bits(base + HDA_GCTL_REG, HDA_GCTL_CRST, 0) < 0)
|
||||
goto no_codec;
|
||||
|
||||
/* Turn on the link and poll RESET# bit until it reads back as 1 */
|
||||
|
|
Loading…
Reference in New Issue