summaryrefslogtreecommitdiff
path: root/src/mainboard/asus/mew-vm/mainboard.c
blob: 831be01868a808c02784ffdf4c8cb2567253b3e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <device/device.h>
#include <boot/tables.h>
#include "chip.h"

int add_mainboard_resources(struct lb_memory *mem)
{
	return add_northbridge_resources(mem);
}

struct chip_operations mainboard_ops = {
	CHIP_NAME("ASUS MEW-VM Mainboard")
};