summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/foster/ec_dummy.c
blob: d96a2585bfcf7a48c73ed765268458cdf9a965f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */

/* 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;
}