diff options
| author | Andrew Jeffery <andrewrj@au1.ibm.com> | 2018-09-17 17:23:16 +0930 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-10-10 13:45:47 -0500 |
| commit | 92d167f704d5a77b353614926747c8352fd13fb2 (patch) | |
| tree | 036cc05160f14a8506b5e73208cdba5f4071e388 /src/usr/pnor/test | |
| parent | c829113199d6ee1f1788ff336a09b55b98bc3609 (diff) | |
| download | blackbird-hostboot-92d167f704d5a77b353614926747c8352fd13fb2.tar.gz blackbird-hostboot-92d167f704d5a77b353614926747c8352fd13fb2.zip | |
pnor: Rename the SFC-based PnorDD class to PnorSfcDD
Clarify which back-end implementation the driver is using.
Change-Id: I26cee706a27e26e0f218da0eb5289592202a5baf
Signed-off-by: Andrew Jeffery <andrewrj@au1.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66119
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/pnor/test')
| -rw-r--r-- | src/usr/pnor/test/pnorddtest.H | 3 | ||||
| -rw-r--r-- | src/usr/pnor/test/sfc_ast2400test.H | 5 | ||||
| -rw-r--r-- | src/usr/pnor/test/sfc_ast2500test.H | 3 | ||||
| -rw-r--r-- | src/usr/pnor/test/sfc_ibmtest.H | 5 |
4 files changed, 10 insertions, 6 deletions
diff --git a/src/usr/pnor/test/pnorddtest.H b/src/usr/pnor/test/pnorddtest.H index ff691b345..21d815b5c 100644 --- a/src/usr/pnor/test/pnorddtest.H +++ b/src/usr/pnor/test/pnorddtest.H @@ -41,7 +41,8 @@ #include <kernel/console.H> #include <sys/time.h> #ifdef CONFIG_PNORDD_IS_SFC -#include "pnordd.H" +#include "pnor_sfcdd.H" +using PnorDD = PnorSfcDD; #elif CONFIG_PNORDD_IS_BMCMBOX #include "pnor_mboxdd.H" #elif CONFIG_PNORDD_IS_IPMI diff --git a/src/usr/pnor/test/sfc_ast2400test.H b/src/usr/pnor/test/sfc_ast2400test.H index 60421515f..bb83f1ea1 100644 --- a/src/usr/pnor/test/sfc_ast2400test.H +++ b/src/usr/pnor/test/sfc_ast2400test.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2014,2015 */ +/* Contributors Listed Below - COPYRIGHT 2014,2018 */ /* [+] Google Inc. */ /* [+] International Business Machines Corp. */ /* */ @@ -37,7 +37,8 @@ #include <errl/errlentry.H> #include <devicefw/userif.H> #include <sys/time.h> -#include "../pnordd.H" +#include "../pnor_sfcdd.H" +using PnorDD = PnorSfcDD; #include <list> #include <targeting/common/attributes.H> #include <lpc/lpcif.H> diff --git a/src/usr/pnor/test/sfc_ast2500test.H b/src/usr/pnor/test/sfc_ast2500test.H index 536293ab9..a39f97e93 100644 --- a/src/usr/pnor/test/sfc_ast2500test.H +++ b/src/usr/pnor/test/sfc_ast2500test.H @@ -37,7 +37,8 @@ #include <errl/errlentry.H> #include <devicefw/userif.H> #include <sys/time.h> -#include "../pnordd.H" +#include "../pnor_sfcdd.H" +using PnorDD = PnorSfcDD; #include <list> #include <targeting/common/attributes.H> #include <lpc/lpcif.H> diff --git a/src/usr/pnor/test/sfc_ibmtest.H b/src/usr/pnor/test/sfc_ibmtest.H index 65909c72a..0962b4abd 100644 --- a/src/usr/pnor/test/sfc_ibmtest.H +++ b/src/usr/pnor/test/sfc_ibmtest.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2014,2015 */ +/* Contributors Listed Below - COPYRIGHT 2014,2018 */ /* [+] Google Inc. */ /* [+] International Business Machines Corp. */ /* */ @@ -37,7 +37,8 @@ #include <errl/errlentry.H> #include <devicefw/userif.H> #include <sys/time.h> -#include "../pnordd.H" +#include "../pnor_sfcdd.H" +using PnorDD = PnorSfcDD; #include <list> #include <targeting/common/attributes.H> #include "../sfc_ibm.H" |

