soc/amd/common/gpio: Fix definition of GPIO_INT_ENABLE_STATUS_DELIVERY
This change fixes the definition of `GPIO_INT_ENABLE_STATUS_DELIVERY` to use `GPIO_INT_ENABLE_DELIVERY` instead of `GPIO_INT_ENABLE_STATUS_DELIVERY`. Signed-off-by: Furquan Shaikh <furquan@google.com> Change-Id: I64d912200779875cf121cec4476fd39de74c0223 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43695 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
86db2c74ff
commit
6f48626a82
|
@ -54,7 +54,7 @@ struct soc_amd_event {
|
|||
#define GPIO_INT_ENABLE_STATUS (1 << 11)
|
||||
#define GPIO_INT_ENABLE_DELIVERY (1 << 12)
|
||||
#define GPIO_INT_ENABLE_STATUS_DELIVERY \
|
||||
(GPIO_INT_ENABLE_STATUS | GPIO_INT_ENABLE_STATUS_DELIVERY)
|
||||
(GPIO_INT_ENABLE_STATUS | GPIO_INT_ENABLE_DELIVERY)
|
||||
#define GPIO_INT_ENABLE_MASK (3 << 11)
|
||||
|
||||
#define GPIO_S0I3_WAKE_EN (1 << 13)
|
||||
|
|
Loading…
Reference in New Issue