From 25a4f355e8d4ec67faa11241750868c721b448b5 Mon Sep 17 00:00:00 2001 From: Kevin K Wong Date: Tue, 3 May 2016 14:00:01 -0700 Subject: npcx: add device id for npcx586g/npcx576g BUG=none BRANCH=none TEST=version command shows the correct chip device id Change-Id: I312b343f97a99b3ff5ae7d6ec3606cff291b2b55 Signed-off-by: Kevin K Wong Reviewed-on: https://chromium-review.googlesource.com/342130 Reviewed-by: David Hendricks Reviewed-by: Mulin Chao --- chip/npcx/system.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/chip/npcx/system.c b/chip/npcx/system.c index 270531226a..46547ff737 100644 --- a/chip/npcx/system.c +++ b/chip/npcx/system.c @@ -576,6 +576,10 @@ const char *system_get_chip_name(void) return "NPCX585G"; case 0x13: return "NPCX575G"; + case 0x16: + return "NPCX586G"; + case 0x17: + return "NPCX576G"; default: *p = system_to_hex((chip_id & 0xF0) >> 4); *(p + 1) = system_to_hex(chip_id & 0x0F); -- cgit v1.2.1