diff options
author | ppaidipe@linux.vnet.ibm.com <ppaidipe@linux.vnet.ibm.com> | 2016-12-16 18:58:11 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-02-02 16:24:33 +1100 |
commit | 3d0e3d8d288ede98b6adf969c8f341eac6c4784d (patch) | |
tree | 41e87806227b782f67de4baf3129dfbe0ce1d31b | |
parent | cdf45901235245a7a8f4bfe3d170d7a0472c7f78 (diff) | |
download | skiboot-3d0e3d8d288ede98b6adf969c8f341eac6c4784d.zip skiboot-3d0e3d8d288ede98b6adf969c8f341eac6c4784d.tar.gz skiboot-3d0e3d8d288ede98b6adf969c8f341eac6c4784d.tar.bz2 |
habanero/slottable: Remove Network Mezz(2, 0) from PHB1.
With addition of latest callback of check_all_slot_table found below
error message in habanero platform.
[ 17.069198739,3] PCI: built-in device not found: Network Mezz (loc: 10)
https://github.com/open-power/skiboot/issues/54
So PHB1 already having one Network Mezz(1,0) which is the only one there in the
habanero platform design layout. check_all_slot_table found the additional
Network Mezz(2,0) in slot table is in-correct. Fix this by removing it.
Signed-off-by: Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | platforms/astbmc/habanero.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/platforms/astbmc/habanero.c b/platforms/astbmc/habanero.c index 0d3a01f..2856a97 100644 --- a/platforms/astbmc/habanero.c +++ b/platforms/astbmc/habanero.c @@ -39,11 +39,6 @@ static const struct slot_table_entry habanero_plx_slots[] = { .name = "Network Mezz", }, { - .etype = st_pluggable_slot, - .location = ST_LOC_DEVFN(2,0), - .name = "Network Mezz", - }, - { .etype = st_builtin_dev, .location = ST_LOC_DEVFN(8,0), .name = "Storage Mezz", |