tkaratapanis commented on code in PR #16734:
URL: https://github.com/apache/nuttx/pull/16734#discussion_r2212924025
##########
drivers/misc/optee.c:
##########
@@ -34,6 +34,8 @@
#include <nuttx/lib/math32.h>
#include <sys/mman.h>
#include <sys/param.h>
+#include "fs_anonmap.h"
+#include "fs_rammap.h"
Review Comment:
You mean to move the definition of :
`int map_anonymous(FAR struct mm_map_entry_s *entry, bool kernel);` from
`fs_anonmap.h` to `include/nuttx/fs/fs.h`
and also move this type from `fs_rammap.h` there?
```
enum mm_map_type_e
{
MAP_USER = 0,
MAP_KERNEL,
MAP_XIP,
};
```
Then change the internal headers to include `include/nuttx/fs/fs.h ` (to get
access to the types we moved)?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]