summaryrefslogtreecommitdiff
path: root/src/mainboard/olpc/btest
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/olpc/btest')
-rw-r--r--src/mainboard/olpc/btest/chip.h4
-rw-r--r--src/mainboard/olpc/btest/mainboard.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/olpc/btest/chip.h b/src/mainboard/olpc/btest/chip.h
index 615ed8d2ac..e168812d0e 100644
--- a/src/mainboard/olpc/btest/chip.h
+++ b/src/mainboard/olpc/btest/chip.h
@@ -1,5 +1,5 @@
-extern struct chip_operations mainboard_olpc_btest_ops;
+extern struct chip_operations mainboard_ops;
-struct mainboard_olpc_btest_config {
+struct mainboard_config {
int nothing;
};
diff --git a/src/mainboard/olpc/btest/mainboard.c b/src/mainboard/olpc/btest/mainboard.c
index acedff8d6e..40e363f49a 100644
--- a/src/mainboard/olpc/btest/mainboard.c
+++ b/src/mainboard/olpc/btest/mainboard.c
@@ -131,7 +131,7 @@ static void enable_dev(struct device *dev)
dev->ops->init = init;
}
-struct chip_operations mainboard_olpc_btest_ops = {
+struct chip_operations mainboard_ops = {
CHIP_NAME("OLPC btest Mainboard")
.enable_dev = enable_dev,
};