diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2020-08-28 10:59:45 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-08-31 06:41:50 +0000 |
commit | 15d6240c1d08a7f8c356da378bef325e4dd17b80 (patch) | |
tree | 3d37ce3d0ad877d67ff2410ab0157527618934fd /src/include/device/azalia_device.h | |
parent | aa87b6d9f3c195414a0ca9f9d2a3c8aafb973c62 (diff) |
include/device/azalia_device: Fix typo
The code using the macro was found not working after finally enabling
the HDA PCI device on the hermes board.
Fix a typo to generate the correct verbs.
Tested on prodrive/hermes.
Change-Id: I953c2e9fbebc1f02bdf71ce868a95f578300c3a1
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44900
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Christian Walter <christian.walter@9elements.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
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 cc4ce75fda..d510123515 100644 --- a/src/include/device/azalia_device.h +++ b/src/include/device/azalia_device.h @@ -111,7 +111,7 @@ enum azalia_pin_location_2 { ((type) << 16) | \ ((color) << 12) | \ ((no_presence_detect) << 8) | \ - ((sequence) << 4) | \ + ((association) << 4) | \ ((sequence) << 0)) #define AZALIA_ARRAY_SIZES const u32 pc_beep_verbs_size = \ |