aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/link/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/link/mainboard.c')
-rw-r--r--src/mainboard/google/link/mainboard.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mainboard/google/link/mainboard.c b/src/mainboard/google/link/mainboard.c
index 410866d0fe..37d1a672cd 100644
--- a/src/mainboard/google/link/mainboard.c
+++ b/src/mainboard/google/link/mainboard.c
@@ -170,7 +170,8 @@ static int link_onboard_smbios_data(struct device *dev, int *handle,
0, /* segment */
BOARD_LIGHTSENSOR_I2C_ADDR, /* bus */
0, /* device */
- 0); /* function */
+ 0, /* function */
+ SMBIOS_DEVICE_TYPE_OTHER); /* device type */
len += smbios_write_type41(
current, handle,
@@ -179,7 +180,8 @@ static int link_onboard_smbios_data(struct device *dev, int *handle,
0, /* segment */
BOARD_TRACKPAD_I2C_ADDR, /* bus */
0, /* device */
- 0); /* function */
+ 0, /* function */
+ SMBIOS_DEVICE_TYPE_OTHER); /* device type */
len += smbios_write_type41(
current, handle,
@@ -188,7 +190,8 @@ static int link_onboard_smbios_data(struct device *dev, int *handle,
0, /* segment */
BOARD_TOUCHSCREEN_I2C_ADDR, /* bus */
0, /* device */
- 0); /* function */
+ 0, /* function */
+ SMBIOS_DEVICE_TYPE_OTHER); /* device type */
return len;
}