zephyr/subsys/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 console: Remove deprecated function console_register_line_input 2019-09-18 19:14:25 -05:00
getchar.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
getline.c cleanup: include/: move uart.h to drivers/uart.h 2019-06-27 22:55:49 -04:00
Kconfig console: Port to the new timeout API 2020-05-07 11:01:55 +02:00
tty.c uart: Fix uart_irq_callback_user_data_set usage 2020-07-30 09:43:12 +02:00