e0e1d42527
and (hopefully) the correct canonical name of the vendor and board. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2476 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
12 lines
278 B
C
12 lines
278 B
C
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <device/pci_ids.h>
|
|
#include <device/pci_ops.h>
|
|
#include "chip.h"
|
|
|
|
#if CONFIG_CHIP_NAME == 1
|
|
struct chip_operations mainboard_tyan_s2850_ops = {
|
|
CHIP_NAME("Tyan S2850 mainboard")
|
|
};
|
|
#endif
|