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 drivers: console: gsm_mux: fix timeout after timeout API change 2020-07-07 15:08:43 +02:00
gsm_mux.h zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
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 console: Add semihosting console 2020-05-07 23:33:38 -05:00
Kconfig.gsm_mux drivers: gsm_mux: Support GSM 07.10 muxing protocol 2020-04-17 10:15:54 +03:00
native_posix_console.c drivers: use K_KERNEL_STACK macros 2020-08-04 12:16:43 -04:00
ram_console.c
rtt_console.c timeout: Fix up API usage 2020-03-31 19:40:47 -04:00
semihost_console.c console: Add semihosting console 2020-05-07 23:33:38 -05:00
uart_console.c uart: Fix uart_irq_callback_set usage 2020-07-30 09:43:12 +02:00
uart_mcumgr.c mgmt: Move mcumgr into its own folder 2020-07-31 08:46:53 -05:00
uart_mux_internal.h zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
uart_mux.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
uart_pipe.c uart: Fix uart_irq_callback_set usage 2020-07-30 09:43:12 +02:00
xtensa_sim_console.c console: xtensa_sim_console: Cleanup and use static keyword 2020-03-11 09:17:38 -04:00