diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-16 16:02:33 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2025-01-17 10:43:54 +0000 |
commit | d2f28a0ce8d2e09c0bc9c323b492d2ee70bbdc79 (patch) | |
tree | d68948504586d2e28b71398269ba693253a4cf2e | |
parent | 056c4059e8a64d006dc274ab8279e06e47e2920d (diff) | |
download | qemu-d2f28a0ce8d2e09c0bc9c323b492d2ee70bbdc79.zip qemu-d2f28a0ce8d2e09c0bc9c323b492d2ee70bbdc79.tar.gz qemu-d2f28a0ce8d2e09c0bc9c323b492d2ee70bbdc79.tar.bz2 |
semihosting/uaccess: Include missing 'exec/cpu-all.h' header
TLB_INVALID_MASK is defined in "exec/cpu-all.h".
Include it in order to avoid when refactoring:
../semihosting/uaccess.c:41:21: error: use of undeclared identifier 'TLB_INVALID_MASK'
41 | if (flags & TLB_INVALID_MASK) {
| ^
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250103171037.11265-3-philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20250116160306.1709518-5-alex.bennee@linaro.org>
-rw-r--r-- | semihosting/uaccess.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/semihosting/uaccess.c b/semihosting/uaccess.c index dc587d7..382a366 100644 --- a/semihosting/uaccess.c +++ b/semihosting/uaccess.c @@ -8,6 +8,7 @@ */ #include "qemu/osdep.h" +#include "exec/cpu-all.h" #include "exec/exec-all.h" #include "semihosting/uaccess.h" |