aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lippert/spacerunner-lx
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/lippert/spacerunner-lx')
-rw-r--r--src/mainboard/lippert/spacerunner-lx/chip.h4
-rw-r--r--src/mainboard/lippert/spacerunner-lx/mainboard.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/lippert/spacerunner-lx/chip.h b/src/mainboard/lippert/spacerunner-lx/chip.h
index d575f6cc3e..422b04ab2b 100644
--- a/src/mainboard/lippert/spacerunner-lx/chip.h
+++ b/src/mainboard/lippert/spacerunner-lx/chip.h
@@ -22,9 +22,9 @@
#include <stdint.h>
-extern struct chip_operations mainboard_lippert_spacerunner_lx_ops;
+extern struct chip_operations mainboard_ops;
-struct mainboard_lippert_spacerunner_lx_config {
+struct mainboard_config {
/* bit2 = RS485_EN2, bit1 = RS485_EN1, bit0 = Live LED */
u8 sio_gp1x_config;
};
diff --git a/src/mainboard/lippert/spacerunner-lx/mainboard.c b/src/mainboard/lippert/spacerunner-lx/mainboard.c
index 5ef2ebf3e8..05d2265569 100644
--- a/src/mainboard/lippert/spacerunner-lx/mainboard.c
+++ b/src/mainboard/lippert/spacerunner-lx/mainboard.c
@@ -41,7 +41,7 @@ static const u16 ec_init_table[] = { /* hi=data, lo=index */
static void init(struct device *dev)
{
- struct mainboard_lippert_spacerunner_lx_config *mb = dev->chip_info;
+ struct mainboard_config *mb = dev->chip_info;
unsigned int gpio_base, i;
printk_debug("LiPPERT SpaceRunner-LX ENTER %s\n", __func__);
@@ -74,7 +74,7 @@ static void enable_dev(struct device *dev)
dev->ops->init = init;
}
-struct chip_operations mainboard_lippert_spacerunner_lx_ops = {
+struct chip_operations mainboard_ops = {
CHIP_NAME("LiPPERT SpaceRunner-LX Mainboard")
.enable_dev = enable_dev,
};