diff options
Diffstat (limited to 'src/usr/sbeio/runtime/rt_sbeio.C')
-rw-r--r-- | src/usr/sbeio/runtime/rt_sbeio.C | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/usr/sbeio/runtime/rt_sbeio.C b/src/usr/sbeio/runtime/rt_sbeio.C index 3aed96db6..1c95596a5 100644 --- a/src/usr/sbeio/runtime/rt_sbeio.C +++ b/src/usr/sbeio/runtime/rt_sbeio.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2017,2018 */ +/* Contributors Listed Below - COPYRIGHT 2017,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -29,6 +29,7 @@ #include <sys/misc.h> #include <sbeio/runtime/sbe_msg_passing.H> #include <sbeio/runtime/sbeio_attr_override.H> +#include <sbeio/runtime/sbeio_nvdimm_operation.H> #include <sbeio/sbeioreasoncodes.H> #include <errno.h> #include <errl/errlentry.H> @@ -40,7 +41,7 @@ #include <targeting/common/target.H> #include <targeting/common/commontargeting.H> #include <targeting/common/utilFilter.H> -#include <runtime/rt_targeting.H> +#include <targeting/runtime/rt_targeting.H> using namespace TARGETING; @@ -782,6 +783,10 @@ namespace RT_SBEIO #endif SBE_MSG::setProcessCmdFunction(PASSTHRU_HBRT_OVERRIDE_ATTR, sbeApplyAttrOverrides); +#ifdef CONFIG_NVDIMM + SBE_MSG::setProcessCmdFunction(PASSTHRU_HBRT_NVDIMM_OP, + sbeNvdimmOperation); +#endif } }; |