aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2016-06-25 08:47:27 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-07-06 19:30:48 +1000
commit82675363312fc19ec75d2746afec53f7b5ef1869 (patch)
tree3e22e35040f5fff3e1124b40e56b60b943fe06a5
parente70575a8330e5a225ca676071815c73d8e296de7 (diff)
downloadskiboot-82675363312fc19ec75d2746afec53f7b5ef1869.zip
skiboot-82675363312fc19ec75d2746afec53f7b5ef1869.tar.gz
skiboot-82675363312fc19ec75d2746afec53f7b5ef1869.tar.bz2
POWER9: Fix P9 chip name in XSCOM
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Acked-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r--hw/xscom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xscom.c b/hw/xscom.c
index 9aa2c81..f6ce4d8 100644
--- a/hw/xscom.c
+++ b/hw/xscom.c
@@ -562,7 +562,7 @@ void xscom_init(void)
struct proc_chip *chip;
const char *chip_name;
static const char *chip_names[] = {
- "UNKNOWN", "P7", "P7+", "P8E", "P8", "P8NVL",
+ "UNKNOWN", "P7", "P7+", "P8E", "P8", "P8NVL", "P9N", "P9C"
};
chip = get_chip(gcid);