diff options
Diffstat (limited to 'BeagleBoardPkg/Sec/Sec.c')
-rw-r--r-- | BeagleBoardPkg/Sec/Sec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BeagleBoardPkg/Sec/Sec.c b/BeagleBoardPkg/Sec/Sec.c index cc134317b1..fa18038a9a 100644 --- a/BeagleBoardPkg/Sec/Sec.c +++ b/BeagleBoardPkg/Sec/Sec.c @@ -55,7 +55,7 @@ TimerInit ( VOID
)
{
- UINTN Timer = FixedPcdGet32(PcdBeagleFreeTimer);
+ UINTN Timer = FixedPcdGet32(PcdOmap35xxFreeTimer);
UINT32 TimerBaseAddress = TimerBase(Timer);
// Set source clock for GPT3 & GPT4 to SYS_CLK
@@ -83,7 +83,7 @@ UartInit ( VOID
)
{
- UINTN Uart = FixedPcdGet32(PcdBeagleConsoleUart);
+ UINTN Uart = FixedPcdGet32(PcdOmap35xxConsoleUart);
UINT32 UartBaseAddress = UartBase(Uart);
// Set MODE_SELECT=DISABLE before trying to initialize or modify DLL, DLH registers.
|