blob: 2e43be2087216f92448fe46beb491046b989d887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <device/device.h>
#include <boot/tables.h>
int add_mainboard_resources(struct lb_memory *mem)
{
return 0;
}
struct chip_operations mainboard_ops = {
CHIP_NAME("ASUS MEW-VM Mainboard")
};
|