992ae486c7
Signed-off-by: Joseph Smith <joe@settoplinux.org> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5635 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
12 lines
247 B
C
12 lines
247 B
C
#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")
|
|
};
|