diff options
author | Angel Pons <th3fanbus@gmail.com> | 2019-12-19 19:37:21 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-01-02 14:26:10 +0000 |
commit | ec21170b876fc6af00141e409bba83d958dc3c6e (patch) | |
tree | c9d7ed33d76cd210a7b77f803c2d67f60501050f /src/mainboard/getac | |
parent | 73c92dac0d400b5311546d9520c015169f819845 (diff) |
mb/**/hda_verb.{c,h}: use denary numerals for codec IDs
Denary, also known as "decimal" or "base 10," is the standard
number system used around the world. Therefore, make use of it.
Change-Id: I7f2937bb7715e0769db3be8cb30d305f9d78b6f8
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37849
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/mainboard/getac')
-rw-r--r-- | src/mainboard/getac/p470/hda_verb.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mainboard/getac/p470/hda_verb.c b/src/mainboard/getac/p470/hda_verb.c index e858a35005..d46b87fa33 100644 --- a/src/mainboard/getac/p470/hda_verb.c +++ b/src/mainboard/getac/p470/hda_verb.c @@ -22,45 +22,45 @@ const u32 cim_verb_data[] = { 0x0000000d, // Number of jacks /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x10ec0000 */ - AZALIA_SUBVENDOR(0x0, 0x10EC0000), + AZALIA_SUBVENDOR(0, 0x10EC0000), /* Pin Widget Verb Table */ /* Pin Complex (NID 0x12), DMIC */ - AZALIA_PIN_CFG(0x0, 0x12, 0x411111F0), + AZALIA_PIN_CFG(0, 0x12, 0x411111F0), /* Pin Complex (NID 0x14), LINE_OUT (port D) */ - AZALIA_PIN_CFG(0x0, 0x14, 0x99130110), + AZALIA_PIN_CFG(0, 0x14, 0x99130110), /* Pin Complex (NID 0x15), HP_OUT (port A) */ - AZALIA_PIN_CFG(0x0, 0x15, 0x01214020), + AZALIA_PIN_CFG(0, 0x15, 0x01214020), /* Pin Complex (NID 0x16), MONO-OUT */ - AZALIA_PIN_CFG(0x0, 0x16, 0x411111F0), + AZALIA_PIN_CFG(0, 0x16, 0x411111F0), /* Pin Complex (NID 0x18), MIC1 (port B) */ - AZALIA_PIN_CFG(0x0, 0x18, 0x01A19830), + AZALIA_PIN_CFG(0, 0x18, 0x01A19830), /* Pin Complex (NID 0x19), MIC2 (port F) */ - AZALIA_PIN_CFG(0x0, 0x19, 0x99A30931), + AZALIA_PIN_CFG(0, 0x19, 0x99A30931), /* Pin Complex (NID 0x1A), LINE1 (port C) */ - AZALIA_PIN_CFG(0x0, 0x1A, 0x02A1983F), + AZALIA_PIN_CFG(0, 0x1A, 0x02A1983F), /* Pin Complex (NID 0x1B), LINE2 (port E) */ - AZALIA_PIN_CFG(0x0, 0x1B, 0x0221401F), + AZALIA_PIN_CFG(0, 0x1B, 0x0221401F), /* Pin Complex (NID 0x1C), CD_IN */ - AZALIA_PIN_CFG(0x0, 0x1C, 0x411111F0), + AZALIA_PIN_CFG(0, 0x1C, 0x411111F0), /* Pin Complex (NID 0x1D), PCBEEP */ - AZALIA_PIN_CFG(0x0, 0x1D, 0x411111F0), + AZALIA_PIN_CFG(0, 0x1D, 0x411111F0), /* Pin Complex (NID 0x1E), S/PDIF-OUT */ - AZALIA_PIN_CFG(0x0, 0x1E, 0x411111F0), + AZALIA_PIN_CFG(0, 0x1E, 0x411111F0), /* Pin Complex (NID 0x1F), S/PDIF-IN */ - AZALIA_PIN_CFG(0x0, 0x1F, 0x411111F0), + AZALIA_PIN_CFG(0, 0x1F, 0x411111F0), }; const u32 pc_beep_verbs[0] = {}; |