aboutsummaryrefslogtreecommitdiff
path: root/platforms/astbmc
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2018-07-17 11:32:52 +0930
committerStewart Smith <stewart@linux.ibm.com>2018-07-17 01:13:16 -0500
commit8972e44f97883e5aabf4b9c6737dcf3b22fd24b8 (patch)
tree0c6132a4cd053b7fa309b5e61940896ef096a181 /platforms/astbmc
parent7a5af6da49b9da76c90cc76f020175dbf6fcfe6e (diff)
downloadskiboot-8972e44f97883e5aabf4b9c6737dcf3b22fd24b8.zip
skiboot-8972e44f97883e5aabf4b9c6737dcf3b22fd24b8.tar.gz
skiboot-8972e44f97883e5aabf4b9c6737dcf3b22fd24b8.tar.bz2
ast-bmc: Rename LPC FW cycle helpers
Introduce some consistency for readability and make the names better reflect the nature of the tests. Signed-off-by: Andrew Jeffery <andrew@aj.id.au> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'platforms/astbmc')
-rw-r--r--platforms/astbmc/pnor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/platforms/astbmc/pnor.c b/platforms/astbmc/pnor.c
index e663055..55784ee 100644
--- a/platforms/astbmc/pnor.c
+++ b/platforms/astbmc/pnor.c
@@ -33,7 +33,7 @@ int pnor_init(void)
int rc;
bool do_mbox;
- do_mbox = ast_is_mbox_pnor();
+ do_mbox = ast_lpc_fw_is_mbox();
if (do_mbox) {
rc = mbox_flash_init(&bl);
} else {
@@ -43,7 +43,7 @@ int pnor_init(void)
* FW reads & writes).
*/
- if (ast_is_ahb_lpc_pnor())
+ if (ast_lpc_fw_is_flash())
rc = ast_sf_open(AST_SF_TYPE_PNOR, &pnor_ctrl);
else {
printf("PLAT: Memboot detected\n");