summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/nest/p9_pba_access.C
diff options
context:
space:
mode:
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/nest/p9_pba_access.C')
-rw-r--r--src/import/chips/p9/procedures/hwp/nest/p9_pba_access.C9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/import/chips/p9/procedures/hwp/nest/p9_pba_access.C b/src/import/chips/p9/procedures/hwp/nest/p9_pba_access.C
index 5c5baa10..5390a058 100644
--- a/src/import/chips/p9/procedures/hwp/nest/p9_pba_access.C
+++ b/src/import/chips/p9/procedures/hwp/nest/p9_pba_access.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER sbe Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* Contributors Listed Below - COPYRIGHT 2015,2019 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -68,14 +68,17 @@ extern "C" {
//if read
if (i_rnw)
{
- FAPI_TRY(p9_pba_coherent_pba_read(i_target, i_address, io_data),
+ FAPI_TRY(p9_pba_coherent_pba_read(i_target, i_address,
+ l_myPbaFlag.getOperationType(),
+ io_data),
"p9_pba_coherent_pba_read() returns error l_rc 0x%.8X",
(uint64_t)fapi2::current_err);
}
//else if write
else
{
- FAPI_TRY(p9_pba_coherent_pba_write(i_target, i_address, io_data),
+ FAPI_TRY(p9_pba_coherent_pba_write(i_target, i_address, io_data,
+ l_myPbaFlag.getOperationType()),
"p9_pba_coherent_pba_write() returns error l_rc 0x%.8X",
(uint64_t)fapi2::current_err);
OpenPOWER on IntegriCloud