summaryrefslogtreecommitdiffstats
path: root/src/usr/devicefw/associator.C
diff options
context:
space:
mode:
authorVitaly Marin <mvitaly@us.ibm.com>2016-08-28 15:52:35 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2016-09-18 13:13:11 -0400
commit83efa306d8460f901459b936c341781633c7b507 (patch)
tree86a6b613687f1cbc8e44947dbb42e41aad9084e9 /src/usr/devicefw/associator.C
parentebeb735ad3227137996822e03cf1108b549b8b69 (diff)
downloadtalos-hostboot-83efa306d8460f901459b936c341781633c7b507.tar.gz
talos-hostboot-83efa306d8460f901459b936c341781633c7b507.zip
Added support for 'Put Ring from Image' command on HB for SBE
Change-Id: I4930633f87bdb61acb19e01f17a8006277f7868d RTC:132654 CMVC-Prereq: 1004971 CMVC-Prereq: 1005024 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28887 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Vitaly Marin <mvitaly@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/devicefw/associator.C')
-rw-r--r--src/usr/devicefw/associator.C12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/usr/devicefw/associator.C b/src/usr/devicefw/associator.C
index 8d34d9554..088deff90 100644
--- a/src/usr/devicefw/associator.C
+++ b/src/usr/devicefw/associator.C
@@ -167,7 +167,9 @@ namespace DeviceFW
if( NULL == i_target )
{
- TRACFCOMP(g_traceBuffer, "A device driver operation was attempted on a NULL target : i_opType=%d, i_accessType=%d", i_opType, i_accessType );
+ TRACFCOMP(g_traceBuffer, "associator.C: A device driver operation was"
+ " attempted on a NULL target : i_opType=%d, i_accessType=%d",
+ i_opType, i_accessType );
/*@
* @errortype
* @moduleid DEVFW_MOD_ASSOCIATOR
@@ -205,7 +207,10 @@ namespace DeviceFW
// Call function if one was found, create error otherwise.
if (NULL == l_devRoute)
{
- TRACFCOMP(g_traceBuffer, "A device driver operation was attempted for which no driver has been registered : i_opType=%d, i_accessType=%d, l_devType=%d", i_opType, i_accessType, l_devType );
+ TRACFCOMP(g_traceBuffer, "associator.C: A device driver operation"
+ " was attempted for which no driver has been registered : "
+ "i_opType=%d, i_accessType=%d, l_devType=%d",
+ i_opType, i_accessType, l_devType );
/*@
* @errortype
* @moduleid DEVFW_MOD_ASSOCIATOR
@@ -223,13 +228,14 @@ namespace DeviceFW
TO_UINT64(l_devType)
);
}
- else
+ else //This section is where the intended function is called
{
l_errl = (*l_devRoute)(i_opType, i_target,
io_buffer, io_buflen,
i_accessType, i_addr);
}
+
return l_errl;
}
OpenPOWER on IntegriCloud