summaryrefslogtreecommitdiffstats
path: root/payloads/libpayload/include
diff options
context:
space:
mode:
authorYu-Ping Wu <yupingso@chromium.org>2022-08-23 16:40:03 +0800
committerTim Wawrzynczak <twawrzynczak@chromium.org>2022-08-24 21:27:46 +0000
commit30d8e724e7b045a81815f07b5a568d4aa37461a9 (patch)
tree80e797d6252cc4f731b2b2a9cdfb7dce93fd7220 /payloads/libpayload/include
parent403d22076ce2fe3d6a0c53e65f4cc6c528f73027 (diff)
downloadcoreboot-30d8e724e7b045a81815f07b5a568d4aa37461a9.tar.gz
coreboot-30d8e724e7b045a81815f07b5a568d4aa37461a9.tar.bz2
coreboot-30d8e724e7b045a81815f07b5a568d4aa37461a9.zip
libpayload: Add const for dma_coherent argument
Add the const modifier for the ptr argument of dma_coherent to avoid unnecessary type casting in payloads. BUG=none TEST=emerge-corsola libpayload BRANCH=none Change-Id: Ic4bb1d8318c7e83fd3ab3054aa0333cb27afe588 Signed-off-by: Yu-Ping Wu <yupingso@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/66961 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Hung-Te Lin <hungte@chromium.org> Reviewed-by: Hsin-Te Yuan <yuanhsinte@google.com>
Diffstat (limited to 'payloads/libpayload/include')
-rw-r--r--payloads/libpayload/include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/libpayload/include/stdlib.h b/payloads/libpayload/include/stdlib.h
index 18f1dca8a4e0..ac386c1fa2ad 100644
--- a/payloads/libpayload/include/stdlib.h
+++ b/payloads/libpayload/include/stdlib.h
@@ -136,7 +136,7 @@ void print_malloc_map(void);
void init_dma_memory(void *start, u32 size);
int dma_initialized(void);
-int dma_coherent(void *ptr);
+int dma_coherent(const void *ptr);
static inline void *xmalloc_work(size_t size, const char *file,
const char *func, int line)