summaryrefslogtreecommitdiff
path: root/board/homestar/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/homestar/board.c')
-rw-r--r--board/homestar/board.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/homestar/board.c b/board/homestar/board.c
index 8d277c4793..8292a697ce 100644
--- a/board/homestar/board.c
+++ b/board/homestar/board.c
@@ -450,6 +450,10 @@ DECLARE_HOOK(HOOK_INIT, board_init, HOOK_PRIO_DEFAULT);
__overridable uint16_t board_get_ps8xxx_product_id(int port)
{
+ /* Check if the chip is PS8755 for rev-0, rev-1 and rev-2 */
+ if (system_get_board_version() < 3 && check_ps8755_chip(port))
+ return PS8755_PRODUCT_ID;
+
return PS8805_PRODUCT_ID;
}