Carl-Daniel's part:

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
This commit is contained in:
Carl-Daniel Hailfinger 2009-02-18 20:41:57 +00:00 committed by Myles Watson
commit 7ad11e8d33
198 changed files with 305 additions and 305 deletions

View file

@ -18,8 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
extern struct chip_operations mainboard_bcom_winnet100_ops;
extern struct chip_operations mainboard_ops;
struct mainboard_bcom_winnet100_config {
struct mainboard_config {
int nothing;
};

View file

@ -21,6 +21,6 @@
#include <device/device.h>
#include "chip.h"
struct chip_operations mainboard_bcom_winnet100_ops = {
struct chip_operations mainboard_ops = {
CHIP_NAME("BCOM WinNET100 Mainboard")
};

View file

@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
extern struct chip_operations mainboard_bcom_winnetp680_ops;
extern struct chip_operations mainboard_ops;
struct mainboard_bcom_winnetp680_config {
struct mainboard_config {
int nothing;
};

View file

@ -22,6 +22,6 @@
#include <device/device.h>
#include "chip.h"
struct chip_operations mainboard_bcom_winnetp680_ops = {
struct chip_operations mainboard_ops = {
CHIP_NAME("BCOM WinNET P680 Mainboard")
};