blob: c34e2539bc2f683be94bf9b645019df01baa7dd3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
#include <nc_fpga.h>
#include <types.h>
void mainboard_post(uint8_t value)
{
nc_fpga_post(value);
}
|