summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2019-10-03 13:32:45 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2019-10-03 13:32:45 +0000
commit2d35bc1386ee80904be0df7dd5b3eb958dc685e2 (patch)
tree46d9234a1d8608967f1e522d3a3a8f5badb1010a /include
parent34c4f86a627f79b1f827e65d46675fca21987b62 (diff)
parent243b61d15aaa59794e73769de7be64f02223cfad (diff)
Merge changes from topic "stm32mp_corrections_w40" into integration
* changes: gpio: stm32_gpio: do not mix error code types fdts: stm32mp1: move FDCAN to PLL4_R mmc: increase delay between ACMD41 retries crypto: stm32_hash: align stm32_hash_update() prototype
Diffstat (limited to 'include')
-rw-r--r--include/drivers/st/stm32_hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drivers/st/stm32_hash.h b/include/drivers/st/stm32_hash.h
index 969d7aa1..df04730d 100644
--- a/include/drivers/st/stm32_hash.h
+++ b/include/drivers/st/stm32_hash.h
@@ -14,7 +14,7 @@ enum stm32_hash_algo_mode {
HASH_SHA256
};
-int stm32_hash_update(const uint8_t *buffer, uint32_t length);
+int stm32_hash_update(const uint8_t *buffer, size_t length);
int stm32_hash_final(uint8_t *digest);
int stm32_hash_final_update(const uint8_t *buffer, uint32_t buf_length,
uint8_t *digest);