aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/rambi/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/rambi/mainboard.c')
-rw-r--r--src/mainboard/google/rambi/mainboard.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mainboard/google/rambi/mainboard.c b/src/mainboard/google/rambi/mainboard.c
index 15faac9bf8..d3f6164cd3 100644
--- a/src/mainboard/google/rambi/mainboard.c
+++ b/src/mainboard/google/rambi/mainboard.c
@@ -142,7 +142,8 @@ static int mainboard_smbios_data(struct device *dev, int *handle,
BOARD_TRACKPAD_I2C_BUS, /* segment */
BOARD_TRACKPAD_I2C_ADDR, /* bus */
0, /* device */
- 0); /* function */
+ 0, /* function */
+ SMBIOS_DEVICE_TYPE_OTHER); /* device type */
#endif
#ifdef BOARD_TOUCHSCREEN_NAME
len += smbios_write_type41(
@@ -152,7 +153,8 @@ static int mainboard_smbios_data(struct device *dev, int *handle,
BOARD_TOUCHSCREEN_I2C_BUS, /* segment */
BOARD_TOUCHSCREEN_I2C_ADDR, /* bus */
0, /* device */
- 0); /* function */
+ 0, /* function */
+ SMBIOS_DEVICE_TYPE_OTHER); /* device type */
#endif
return len;
}