From 97ee7df6092551774b4c112a0349a25e76a684f3 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Thu, 8 Sep 2016 19:34:07 -0400 Subject: New keystore index internal API. Compiles, not yet integrated or tested. --- ks_flash.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ks_flash.c') diff --git a/ks_flash.c b/ks_flash.c index 5d0baaf..c3d12aa 100644 --- a/ks_flash.c +++ b/ks_flash.c @@ -519,8 +519,8 @@ const hal_ks_driver_t hal_ks_token_driver[1] = {{ * because it's the flash we've got. */ -hal_error_t hal_ks_get_pin(const hal_user_t user, - const hal_ks_pin_t **pin) +hal_error_t hal_get_pin(const hal_user_t user, + const hal_ks_pin_t **pin) { if (pin == NULL) return HAL_ERROR_BAD_ARGUMENTS; @@ -560,8 +560,8 @@ hal_error_t hal_ks_get_pin(const hal_user_t user, return LIBHAL_OK; } -hal_error_t hal_ks_set_pin(const hal_user_t user, - const hal_ks_pin_t * const pin) +hal_error_t hal_set_pin(const hal_user_t user, + const hal_ks_pin_t * const pin) { uint32_t active_sector_offset; -- cgit v1.2.3