zephyr/subsys/tracing
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
..
ctf tracing: trace mutex/semaphore using dedicated calls 2020-08-24 13:21:12 +02:00
include tracing: trace mutex/semaphore using dedicated calls 2020-08-24 13:21:12 +02:00
sysview device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
CMakeLists.txt cmake: fix include directories to work with out-of-tree arch 2020-08-05 08:06:07 -04:00
Kconfig tracing: make uart backend sync capable 2020-08-24 13:21:12 +02:00
cpu_stats.c device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
tracing_backend_posix.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
tracing_backend_uart.c device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
tracing_backend_usb.c samples: tracing: Enable USB by the application 2020-08-13 11:49:47 +02:00
tracing_buffer.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
tracing_core.c device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
tracing_format_async.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
tracing_format_common.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
tracing_format_sync.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00