From b202a8224a660567246484afe104bfd2e642fb5f Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Sat, 8 Aug 2015 17:44:45 +0200 Subject: [PATCH] ck_pr/arm: Rename ck_pr_[load|store]_64 to ck_pr_md_[load|store]_64, as it should have been done. --- include/gcc/arm/ck_pr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gcc/arm/ck_pr.h b/include/gcc/arm/ck_pr.h index 98cdb8d..d8a60e0 100644 --- a/include/gcc/arm/ck_pr.h +++ b/include/gcc/arm/ck_pr.h @@ -132,7 +132,7 @@ CK_PR_LOAD_S(char, char, "ldrb") #undef CK_PR_LOAD CK_CC_INLINE static uint64_t -ck_pr_load_64(const uint64_t *target) +ck_pr_md_load_64(const uint64_t *target) { register uint64_t ret; @@ -171,7 +171,7 @@ CK_PR_STORE_S(char, char, "strb") #undef CK_PR_STORE CK_CC_INLINE static void -ck_pr_store_64(const uint64_t *target, uint64_t value) +ck_pr_md_store_64(const uint64_t *target, uint64_t value) { uint64_t tmp; uint32_t flag;