zephyr/drivers/i2s
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
i2s_cavs.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
i2s_cavs.h zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
i2s_common.c
i2s_handlers.c drivers: i2s: fix i2s_handlers.c 2020-05-06 09:47:42 +02:00
i2s_ll_stm32.c drivers: dma: Apply DMA callback change to relevant drivers 2020-07-30 09:48:00 +02:00
i2s_ll_stm32.h device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
i2s_sam_ssc.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
Kconfig drivers: audio: Port to the new timeout API 2020-05-07 11:01:55 +02:00
Kconfig.cavs kconfig: Clean up header comments and make them consistent 2019-11-04 17:31:27 -05:00
Kconfig.sam_ssc drivers: i2s: i2s_sam_ssc: Convert to devicetree 2020-05-07 22:24:58 -05:00
Kconfig.stm32 boards: stm23: Move IS pinmux to new DT API 2020-04-29 13:13:58 -05:00