boards: enclustra: mercury_xe: Remove pointless init function

Removes an init function that does absolutely nothing

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
This commit is contained in:
Jamie McCrae 2024-09-18 11:28:32 +01:00 committed by Henrik Brix Andersen
parent 4b2c030ec4
commit 47bbade847
2 changed files with 0 additions and 21 deletions

View File

@ -1,5 +0,0 @@
# Copyright (c) 2020, Antmicro
# SPDX-License-Identifier: Apache-2.0
zephyr_library()
zephyr_library_sources(board.c)

View File

@ -1,16 +0,0 @@
/*
* Copyright (c) 2020, Antmicro
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/arch/cpu.h>
#include <zephyr/init.h>
static int mercury_xu_init(void)
{
return 0;
}
SYS_INIT(mercury_xu_init, PRE_KERNEL_2,
CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);