diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2011-07-29 13:22:18 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2011-08-08 08:03:58 -0500 |
commit | df4b0117660700e195864b761dfe92dd3467c686 (patch) | |
tree | 8542d84e764200031416e89a5defa166a616e0d0 /src/usr/devicefw | |
parent | b6041015e48c8987813b2220f59da4bf6c54383e (diff) | |
download | talos-hostboot-df4b0117660700e195864b761dfe92dd3467c686.tar.gz talos-hostboot-df4b0117660700e195864b761dfe92dd3467c686.zip |
More PNOR RP work - Task 3440 (Story 3330)
Also includes testcase work for Task 3388
Change-Id: Ib4ff920f351554fe457c171f601a38809ca6ac6f
Functional PNOR RP code that works with the PNOR DD. Still missing
the complete path but should be ready for use by the next level up.
Task 3440
Change-Id: Id32a919f88da636c341116444e557387beaccdb2
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/230
Tested-by: Jenkins Server
Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com>
Reviewed-by: ADAM R. MUHLE <armuhle@us.ibm.com>
Diffstat (limited to 'src/usr/devicefw')
-rw-r--r-- | src/usr/devicefw/associator.C | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/usr/devicefw/associator.C b/src/usr/devicefw/associator.C index 80ca6d9b6..8919e0a07 100644 --- a/src/usr/devicefw/associator.C +++ b/src/usr/devicefw/associator.C @@ -76,6 +76,7 @@ namespace DeviceFW if(((targets.flag) && (i_targetType != WILDCARD)) || ((!targets.flag) && (i_targetType == WILDCARD))) { + TRACFCOMP(g_traceBuffer, "Invalid registration type was given to register a device : i_opType=%d, i_accType=%d, i_targetType=%d", i_opType, i_accType, i_targetType ); /*@ * @errortype * @moduleid DEVFW_MOD_ASSOCIATOR @@ -211,6 +212,7 @@ 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 ); /*@ * @errortype * @moduleid DEVFW_MOD_ASSOCIATOR |