summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/foster/ec_dummy.c
blob: b0898db78e84780f262ae92819efd23b44910627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

/* Dummy CHROMEEC file to provide stub functions for vboot compilation */

#include <stdint.h>

int google_chromeec_vbnv_context(int is_read, uint8_t *data, int len);
int google_chromeec_vbnv_context(int is_read, uint8_t *data, int len)
{
	return 0;
}