zephyr/subsys/shell/modules
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
..
CMakeLists.txt
Kconfig
date_service.c subsystems: migrate includes to <zephyr/...> 2022-05-09 12:07:35 +02:00
device_service.c devices: constify statically initialized device pointers 2022-08-19 11:51:26 +02:00
devmem_service.c subsystems: migrate includes to <zephyr/...> 2022-05-09 12:07:35 +02:00
kernel_service.c shell: kernel: fix sleep command 2022-08-03 18:47:03 +02:00