zephyr/subsys/fs
Tomasz Bursztyka e18fcbba5a device: Const-ify all device driver instance pointers
Now that device_api attribute is unmodified at runtime, as well as all
the other attributes, it is possible to switch all device driver
instance to be constant.

A coccinelle rule is used for this:

@r_const_dev_1
  disable optional_qualifier
@
@@
-struct device *
+const struct device *

@r_const_dev_2
 disable optional_qualifier
@
@@
-struct device * const
+const struct device *

Fixes #27399

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
2020-09-02 13:48:13 +02:00
..
fcb zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
nvs fs: nvs: Fix handling of corrupt ate's in garbage collector 2020-06-26 12:07:13 -05:00
CMakeLists.txt fs: remove NFFS subsystem 2020-01-21 15:32:47 +01:00
fat_fs.c device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
fs_impl.c
fs_impl.h include: Fix use of <fs.h> -> <fs/fs.h> 2019-12-10 08:39:37 -05:00
fs.c device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
fuse_fs_access.c native_posix: Add flags argument to fs_open invocations 2020-07-30 16:33:18 +02:00
Kconfig subsys/fs/fatfs: Add kconfig option for enabling exFAT support 2020-08-13 14:15:40 +02:00
Kconfig.littlefs global: Remove leading/trailing blank lines in files 2019-12-11 19:17:27 +01:00
littlefs_fs.c device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
shell.c subsys/fs: Add open flags parameter to fs_open 2020-07-30 16:33:18 +02:00