blob: e278565dc04d2dc8a90df79d457decd50f607e7b (
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 add_northbridge_resources(mem);
}
struct chip_operations mainboard_ops = {
CHIP_NAME("ASUS MEW-VM Mainboard")
};
|