diff --git a/src/import/chips/p9/procedures/hwp/nest/p9a_get_mmio.C b/src/import/chips/p9/procedures/hwp/nest/p9a_get_mmio.C index 1e9ce665f4f..836d6305718 100644 --- a/src/import/chips/p9/procedures/hwp/nest/p9a_get_mmio.C +++ b/src/import/chips/p9/procedures/hwp/nest/p9a_get_mmio.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2018,2019 */ +/* Contributors Listed Below - COPYRIGHT 2018,2020 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -82,7 +82,7 @@ fapi2::ReturnCode p9a_get_mmio(const fapi2::Target } FAPI_TRY(addOMIBase(i_target, l_addr)); - FAPI_INF("Read address: 0x%lX transaction size: %d", l_addr, l_tsize); + FAPI_DBG("Read address: 0x%lX transaction size: %d", l_addr, l_tsize); l_proc_target = i_target.getParent().getParent(); @@ -120,7 +120,7 @@ fapi2::ReturnCode p9a_get_mmio(const fapi2::Target sprintf(&l_hexdata[l_i * 2], "%02X", o_data[l_i]); } - FAPI_INF("Read data: 0x%s", l_hexdata); + FAPI_DBG("Read data: 0x%s", l_hexdata); fapi_try_exit: diff --git a/src/import/chips/p9/procedures/hwp/nest/p9a_put_mmio.C b/src/import/chips/p9/procedures/hwp/nest/p9a_put_mmio.C index ddc6fbbe921..fb1a2c13bca 100644 --- a/src/import/chips/p9/procedures/hwp/nest/p9a_put_mmio.C +++ b/src/import/chips/p9/procedures/hwp/nest/p9a_put_mmio.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2018,2019 */ +/* Contributors Listed Below - COPYRIGHT 2018,2020 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -87,8 +87,8 @@ fapi2::ReturnCode p9a_put_mmio(const fapi2::Target } FAPI_TRY(addOMIBase(i_target, l_addr)); - FAPI_INF("Write address: %lX", l_addr); - FAPI_INF("Write data: %s", l_hexdata); + FAPI_DBG("Write address: %lX", l_addr); + FAPI_DBG("Write data: %s", l_hexdata); l_proc_target = i_target.getParent().getParent();