zephyr/subsys/bluetooth/controller
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
..
crypto Bluetooth: controller: Use NRF RNG entropy device 2020-06-16 19:09:55 +02:00
hal Bluetooth: controller: Add cpu_dsb hal interface 2020-08-31 13:49:13 +02:00
hci device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
include Bluetooth: controller: Add advertising set handle mapping 2020-08-13 16:14:29 +02:00
ll_sw device: Const-ify all device driver instance pointers 2020-09-02 13:48:13 +02:00
ticker guideline: Make explicit fallthrough cases 2020-08-24 20:28:47 -04:00
util Bluetooth: controller: Use NRF RNG entropy device 2020-06-16 19:09:55 +02:00
CMakeLists.txt Bluetooth: controller: split: Initial extended scanning code 2020-06-12 15:50:34 +02:00
Kconfig Bluetooth: controller: Fix BT_CTLR_SCAN_REQ_NOTIFY dependency 2020-08-25 16:38:12 +03:00
Kconfig.ll_sw_split Bluetooth: Call bt_recv from priority higher that TX thread. 2020-09-01 15:15:36 +03:00