diff options
author | emilia <emilia@vegaa.systems> | 2023-08-27 22:01:42 +0000 |
---|---|---|
committer | emilia <emilia@vegaa.systems> | 2023-08-27 22:01:42 +0000 |
commit | 7f2668d6fe3b7ce82c72d1603f59ec124d1a354b (patch) | |
tree | a14d5696bc083a579cef65d399f0c7ed6aedbb15 /sys/include | |
parent | 1bffeaa048303a129fd1a95538a9917219b76aa7 (diff) |
kernel: mmio: Add missing include
git-svn-id: https://svn.vegaa.systems/svn/vega-Vega/trunk@37 a8a8aea2-181d-ee11-89e8-15fd0e089fc4
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/mmio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/sys/mmio.h b/sys/include/sys/mmio.h index 03fc165..ea0439f 100644 --- a/sys/include/sys/mmio.h +++ b/sys/include/sys/mmio.h @@ -32,6 +32,8 @@ #ifndef _SYS_MMIO_H_ #define _SYS_MMIO_H_ +#include <sys/types.h> + #define _MMIO_WRITE_TYPE(TYPE, SUFFIX) \ static inline void \ mmio_write##SUFFIX(uintptr_t addr, TYPE val) \ |