mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
19 lines
387 B
C
19 lines
387 B
C
/*
|
|
* PROJECT: ReactOS Boot Loader
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
|
* FILE: boot/armllb/hw/omap3-beagle/hwinit.c
|
|
* PURPOSE: LLB Hardware Initialization Routines for OMAP3 Beagle
|
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
VOID
|
|
NTAPI
|
|
LlbHwInitialize(VOID)
|
|
{
|
|
while (TRUE);
|
|
}
|
|
|
|
/* EOF */
|