summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2021-11-09 19:47:14 -0600
committerCommit Bot <commit-bot@chromium.org>2021-11-18 04:52:58 +0000
commitb69596420685c5038e7df15732ac402e5d21839a (patch)
tree1f140a6b2d2e2d2ca81f07ef27721345967d1b18 /include
parentee4d6d1321d3b3ce20405f61979f8612388c3ce9 (diff)
downloadchrome-ec-b69596420685c5038e7df15732ac402e5d21839a.tar.gz
Revert "common: add host command to push AP SKU ID to ec"
This reverts commit a52cfbc80c060d9883aee9de4e764e0b250d184a. BUG=b:200823466 TEST=make buildall -j Change-Id: Ie3b003dcc8d7073b8ba3475d5a2651e5ffb2fd8b Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3273450 Reviewed-by: Vadim Sukhomlinov <sukhomlinov@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/config.h3
-rw-r--r--include/ec_commands.h5
2 files changed, 1 insertions, 7 deletions
diff --git a/include/config.h b/include/config.h
index 3623c418c3..c9c4baef40 100644
--- a/include/config.h
+++ b/include/config.h
@@ -1988,9 +1988,6 @@
/* EC controls the board's SKU ID and can report that to the AP */
#undef CONFIG_HOSTCMD_SKUID
-/* Set SKU ID from AP */
-#undef CONFIG_HOSTCMD_AP_SET_SKUID
-
/* Command to issue AP reset */
#undef CONFIG_HOSTCMD_AP_RESET
diff --git a/include/ec_commands.h b/include/ec_commands.h
index df983455a8..b3f9716d6d 100644
--- a/include/ec_commands.h
+++ b/include/ec_commands.h
@@ -1384,10 +1384,7 @@ struct ec_response_get_features {
/* Get the board's SKU ID from EC */
#define EC_CMD_GET_SKU_ID 0x000E
-/* Set SKU ID from AP */
-#define EC_CMD_SET_SKU_ID 0x000F
-
-struct ec_sku_id_info {
+struct ec_response_sku_id {
uint32_t sku_id;
} __ec_align4;