zephyr/drivers/ipm
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
ipm_cavs_idc_priv.h zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
ipm_cavs_idc.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
ipm_cavs_idc.h ipm: add driver for the CAVS DSP Intra-DSP Communication (IDC) 2020-03-25 19:07:28 -04:00
ipm_handlers.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
ipm_imx.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
ipm_mcux.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
ipm_mhu.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
ipm_mhu.h drivers: ipm: Align all drivers using user_data for the callback 2020-07-30 09:51:51 +02:00
ipm_nrfx_ipc.c drivers: ipm: Align all drivers using user_data for the callback 2020-07-30 09:51:51 +02:00
ipm_nrfx_ipc.h drivers: ipm: add nRFx IPM driver 2019-11-20 19:29:06 +01:00
ipm_stm32_ipcc.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
Kconfig ipm: add driver for the CAVS DSP Intra-DSP Communication (IDC) 2020-03-25 19:07:28 -04:00
Kconfig.nrfx drivers: ipm: add nRFx IPM driver 2019-11-20 19:29:06 +01:00
Kconfig.nrfx_ipc_channel drivers: ipm: add nRFx IPM driver 2019-11-20 19:29:06 +01:00