aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuluTHSu <Lulu_Su@wistron.com>2020-10-30 10:22:30 +0800
committerOliver O'Halloran <oohall@gmail.com>2020-11-02 12:37:01 +1100
commit37d26e2e17e9e055a6b781beb558beeb22d4ae2f (patch)
tree90aef396eb67a96a38c34afc21cdd5e5098a306f
parent5262cdd1b99f77bca5951fc8132f9795ef0c2b87 (diff)
downloadskiboot-37d26e2e17e9e055a6b781beb558beeb22d4ae2f.zip
skiboot-37d26e2e17e9e055a6b781beb558beeb22d4ae2f.tar.gz
skiboot-37d26e2e17e9e055a6b781beb558beeb22d4ae2f.tar.bz2
platform/mowgli: modify slot_name
Since Mowgli has only one slot, modify the names of other slots to avoid confusion. Cc: skiboot-stable@lists.ozlabs.org Signed-off-by: LuluTHSu <Lulu_Su@wistron.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
-rw-r--r--platforms/astbmc/mowgli.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/platforms/astbmc/mowgli.c b/platforms/astbmc/mowgli.c
index 0246bff..083255f 100644
--- a/platforms/astbmc/mowgli.c
+++ b/platforms/astbmc/mowgli.c
@@ -17,17 +17,17 @@
#include "astbmc.h"
-ST_PLUGGABLE(mowgli_slot1, "Pcie Slot1 (16x)");
-ST_PLUGGABLE(mowgli_slot2, "Pcie Slot2 (8x)");
+ST_PLUGGABLE(mowgli_slot1, "Pcie Slot1");
+ST_PLUGGABLE(mowgli_builtin_SAS, "Builtin SAS");
ST_BUILTIN_DEV(mowgli_builtin_bmc, "BMC");
-ST_PLUGGABLE(mowgli_slot3, "Pcie Slot3 (8x)");
+ST_PLUGGABLE(mowgli_builtin_ethernet, "Builtin Ethernet");
ST_BUILTIN_DEV(mowgli_builtin_usb, "Builtin USB");
static const struct slot_table_entry mowgli_phb_table[] = {
ST_PHB_ENTRY(0, 0, mowgli_slot1),
- ST_PHB_ENTRY(0, 1, mowgli_slot2),
+ ST_PHB_ENTRY(0, 1, mowgli_builtin_SAS),
ST_PHB_ENTRY(0, 2, mowgli_builtin_bmc),
- ST_PHB_ENTRY(0, 3, mowgli_slot3),
+ ST_PHB_ENTRY(0, 3, mowgli_builtin_ethernet),
ST_PHB_ENTRY(0, 4, mowgli_builtin_usb),
{ .etype = st_end },