[PATCH v1] i.MX: hab: fix compile after define renames
Oleksij Rempel
o.rempel at pengutronix.de
Tue Mar 28 02:14:16 PDT 2017
Some defines was renamed by this patch:
| commit 75e98198234ce18ab15f581cf7b52aaf0b46d792
| i.MX: Add fusemap for VF610
which was not included in my initial patch. So fix it.
Signed-off-by: Oleksij Rempel <o.rempel at pengutronix.de>
---
drivers/hab/hab.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/hab/hab.c b/drivers/hab/hab.c
index 56d49e8e3..512ff7ecf 100644
--- a/drivers/hab/hab.c
+++ b/drivers/hab/hab.c
@@ -126,7 +126,7 @@ static int imx_hab_read_srk_hash_ocotp(u8 *__srk)
int ret, i;
for (i = 0; i < SRK_HASH_SIZE / sizeof(uint32_t); i++) {
- ret = imx_ocotp_read_field(IMX6_OCOTP_SRK_HASH(i), &srk[i]);
+ ret = imx_ocotp_read_field(OCOTP_SRK_HASH(i), &srk[i]);
if (ret < 0)
return ret;
}
@@ -140,13 +140,13 @@ static int imx_hab_write_srk_hash_ocotp(const u8 *__newsrk, unsigned flags)
int ret, i;
for (i = 0; i < SRK_HASH_SIZE / sizeof(uint32_t); i++) {
- ret = imx_ocotp_write_field(IMX6_OCOTP_SRK_HASH(i), newsrk[i]);
+ ret = imx_ocotp_write_field(OCOTP_SRK_HASH(i), newsrk[i]);
if (ret < 0)
return ret;
}
if (flags & IMX_SRK_HASH_WRITE_LOCK) {
- ret = imx_ocotp_write_field(IMX6_OCOTP_SRK_LOCK, 1);
+ ret = imx_ocotp_write_field(OCOTP_SRK_LOCK, 1);
if (ret < 0)
return ret;
}
@@ -161,7 +161,7 @@ static int imx_hab_permanent_write_enable_ocotp(int enable)
static int imx_hab_lockdown_device_ocotp(void)
{
- return imx_ocotp_write_field(IMX6_OCOTP_SEC_CONFIG, 1);
+ return imx_ocotp_write_field(OCOTP_SEC_CONFIG_1, 1);
}
static int imx_hab_device_locked_down_ocotp(void)
@@ -169,7 +169,7 @@ static int imx_hab_device_locked_down_ocotp(void)
int ret;
unsigned int v;
- ret = imx_ocotp_read_field(IMX6_OCOTP_SEC_CONFIG, &v);
+ ret = imx_ocotp_read_field(OCOTP_SEC_CONFIG_1, &v);
if (ret < 0)
return ret;
--
2.11.0
More information about the barebox
mailing list