zephyr/tests/subsys/fs
Gerard Marull-Paretas e0125d04af devices: constify statically initialized device pointers
It is frequent to find variable definitions like this:

```c
static const struct device *dev = DEVICE_DT_GET(...)
```

That is, module level variables that are statically initialized with a
device reference. Such value is, in most cases, never changed meaning
the variable can also be declared as const (immutable). This patch
constifies all such cases.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-08-19 11:51:26 +02:00
..
common test: fix more legacy #include paths 2022-08-02 16:41:41 +01:00
fat_fs_api tests: subsys: fs: fat_fs_api to new ztest API 2022-08-12 14:15:26 +01:00
fat_fs_dual_drive test: fix more legacy #include paths 2022-08-02 16:41:41 +01:00
fcb tests: subsys: fs: move fcb to new ztest API 2022-08-12 14:14:26 +01:00
fs_api test: fix more legacy #include paths 2022-08-02 16:41:41 +01:00
littlefs test: fix more legacy #include paths 2022-08-02 16:41:41 +01:00
multi-fs test: fix more legacy #include paths 2022-08-02 16:41:41 +01:00
nvs devices: constify statically initialized device pointers 2022-08-19 11:51:26 +02:00