soc/amd/stoneyridge: Remove errant parenthesis in southbridge.h
Delete an unmatched opening parenthesis in the definition for the EHCI hub config register definition. This wasn't causing a problem unless EHCI debug was enabled. TEST=Jam Makefile.inc to unconditionally build enable_usbdebug.c and verify successful build Change-Id: I5f461d1573e416b5a8ee24329142e3c46b6a05e3 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/29073 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
ba8751fc72
commit
fdff6c25a1
|
@ -154,7 +154,7 @@
|
|||
#define EHCI_HUB_CONFIG4 0x90
|
||||
#define DEBUG_PORT_SELECT_SHIFT 16
|
||||
#define DEBUG_PORT_ENABLE BIT(18)
|
||||
#define DEBUG_PORT_MASK (BIT(16) | BIT(17) | (BIT(18))
|
||||
#define DEBUG_PORT_MASK (BIT(16) | BIT(17) | BIT(18))
|
||||
|
||||
#define WIDEIO_RANGE_ERROR -1
|
||||
#define TOTAL_WIDEIO_PORTS 3
|
||||
|
|
Loading…
Reference in New Issue