7ad11e8d33
This patch converts mainboard_$VENDOR_$BOARD_ops to mainboard_ops and mainboard_$VENDOR_$BOARD_config to mainboard_config. Ron's part: The config change that makes the naming change not break every build. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3954 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
9 lines
159 B
C
9 lines
159 B
C
#include <device/device.h>
|
|
#include "chip.h"
|
|
|
|
#if CONFIG_CHIP_NAME == 1
|
|
struct chip_operations mainboard_ops = {
|
|
CHIP_NAME("Tyan S2850 Mainboard")
|
|
};
|
|
#endif
|
|
|