-/* $OpenBSD: platform.c,v 1.1 2015/05/19 03:30:54 jsg Exp $ */
+/* $OpenBSD: platform.c,v 1.2 2015/05/27 08:03:43 jsg Exp $ */
/*
* Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
*
#include "imx.h"
#include "omap.h"
#include "sunxi.h"
+#include "exynos.h"
static struct armv7_platform *platform;
struct armv7_platform *imx_platform_match(void);
struct armv7_platform *omap_platform_match(void);
struct armv7_platform *sunxi_platform_match(void);
+struct armv7_platform *exynos_platform_match(void);
struct armv7_platform * (*plat_match[])(void) = {
#if NIMX > 0
#if NSUNXI > 0
sunxi_platform_match,
#endif
+#if NEXYNOS > 0
+ exynos_platform_match,
+#endif
};
void