xref: /netbsd-src/sys/external/bsd/gnu-efi/dist/lib/arm/initplat.c (revision df0834201abca1394f33fc46168cce35512a3d79)
1*df083420Sjmcneill /*	$NetBSD: initplat.c,v 1.2 2019/03/30 12:46:16 jmcneill Exp $	*/
2d1b935f8Sjmcneill 
3d1b935f8Sjmcneill /*
4d1b935f8Sjmcneill  * Copright (C) 2014 Linaro Ltd.
5d1b935f8Sjmcneill  * Author: Ard Biesheuvel <ard.biesheuvel@linaro.org>
6d1b935f8Sjmcneill  *
7d1b935f8Sjmcneill  * Redistribution and use in source and binary forms, with or without
8d1b935f8Sjmcneill  * modification, are permitted provided that the following conditions
9d1b935f8Sjmcneill  * are met:
10d1b935f8Sjmcneill  * 1. Redistributions of source code must retain the above copyright
11d1b935f8Sjmcneill  *    notice and this list of conditions, without modification.
12d1b935f8Sjmcneill  * 2. The name of the author may not be used to endorse or promote products
13d1b935f8Sjmcneill  *    derived from this software without specific prior written permission.
14d1b935f8Sjmcneill  *
15d1b935f8Sjmcneill  * Alternatively, this software may be distributed under the terms of the
16d1b935f8Sjmcneill  * GNU General Public License as published by the Free Software Foundation;
17d1b935f8Sjmcneill  * either version 2 of the License, or (at your option) any later version.
18d1b935f8Sjmcneill  */
19d1b935f8Sjmcneill 
20d1b935f8Sjmcneill #include "lib.h"
21d1b935f8Sjmcneill 
22d1b935f8Sjmcneill VOID
InitializeLibPlatform(IN EFI_HANDLE ImageHandle EFI_UNUSED,IN EFI_SYSTEM_TABLE * SystemTable EFI_UNUSED)23d1b935f8Sjmcneill InitializeLibPlatform (
24d1b935f8Sjmcneill     IN EFI_HANDLE           ImageHandle EFI_UNUSED,
25d1b935f8Sjmcneill     IN EFI_SYSTEM_TABLE     *SystemTable EFI_UNUSED
26d1b935f8Sjmcneill     )
27d1b935f8Sjmcneill {
28d1b935f8Sjmcneill }
29