blob: 095096b27d3344eeb802fcd4a13e2a79e1d5c878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
#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
|