blob: 0e4944783b87d7b3ad0423a926c4f3ab72d86ede (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef VARIANT_H
#define VARIANT_H
#include <device/device.h>
#include <soc/romstage.h>
int variant_smbios_data(struct device *dev, int *handle,
unsigned long *current);
void variant_romstage_entry(struct romstage_params *rp);
void lan_init(void);
#endif
|