c420e4c394368e879e5561a798e3cb6220ef4e15
[reactos.git] / reactos / boot / armllb / hw / versatile / hwinit.c
1 /*
2 * PROJECT: ReactOS Boot Loader
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: boot/armllb/hw/versatile/hwinit.c
5 * PURPOSE: LLB Hardware Initialization Routines for Versatile
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9 #include "precomp.h"
10
11 VOID
12 NTAPI
13 LlbHwInitialize(VOID)
14 {
15 /* Setup the CLCD (PL110) */
16 LlbHwVersaClcdInitialize();
17
18 /* Setup the UART (PL011) */
19 LlbHwVersaUartInitialize();
20 }
21
22 /* EOF */