mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
18 lines
387 B
C
18 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 */
|