zephyr/drivers/console
Tomasz Bursztyka 98d9b01322 device: Apply driver_api/data attributes rename everywhere
Via coccinelle:

@r_device_driver_api_and_data_1@
struct device *D;
@@
(
D->
-	driver_api
+	api
|
D->
-	driver_data
+	data
)

@r_device_driver_api_and_data_2@
expression E;
@@
(
net_if_get_device(E)->
-	driver_api
+	api
|
net_if_get_device(E)->
-	driver_data
+	data
)

And grep/sed rules for macros:

git grep -rlz 'dev)->driver_data' |
	xargs -0 sed -i 's/dev)->driver_data/dev)->data/g'

git grep -rlz 'dev->driver_data' |
	xargs -0 sed -i 's/dev->driver_data/dev->data/g'

git grep -rlz 'device->driver_data' |
	xargs -0 sed -i 's/device->driver_data/device->data/g'

Fixes #27397

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
2020-08-11 19:30:53 +02:00
..
CMakeLists.txt cmake: remove _if_kconfig() functions 2020-08-01 12:35:20 +02:00
gsm_mux.c
gsm_mux.h
ipm_console_receiver.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
ipm_console_sender.c device: Apply config_info rename everywhere 2020-08-11 19:30:53 +02:00
Kconfig
Kconfig.gsm_mux
native_posix_console.c drivers: use K_KERNEL_STACK macros 2020-08-04 12:16:43 -04:00
ram_console.c
rtt_console.c
semihost_console.c
uart_console.c
uart_mcumgr.c mgmt: Move mcumgr into its own folder 2020-07-31 08:46:53 -05:00
uart_mux_internal.h
uart_mux.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
uart_pipe.c
xtensa_sim_console.c