diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-04-13 17:39:52 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-04-13 17:39:52 +0000 |
commit | 7e3538510fd79177efd1fc9b7937d02d94d2eaae (patch) | |
tree | 7c14f93e265edda9171da2edc8d74c100caa6783 /BeagleBoardPkg/Sec/Sec.c | |
parent | bf19b4402b3a8addc54f8391aa58a02bf0b9066c (diff) | |
download | edk2-platforms-7e3538510fd79177efd1fc9b7937d02d94d2eaae.tar.xz |
Fix build break. Was fixing Beagle names in Omap35xx package and missed a few.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10361 6f19259b-4bc3-4df7-8a09-765794883524
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.
|