zephyr/drivers/crypto
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 drivers: crypto: add driver for nRF ECB 2020-04-08 16:20:53 +02:00
Kconfig drivers: crypto: add driver for nRF ECB 2020-04-08 16:20:53 +02:00
Kconfig.ataes132a
Kconfig.nrf_ecb drivers: crypto: add driver for nRF ECB 2020-04-08 16:20:53 +02:00
Kconfig.stm32 kconfig: Replace some single-symbol 'if's with 'depends on' 2020-02-08 08:32:42 -05:00
crypto_ataes132a.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
crypto_ataes132a_priv.h device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
crypto_mtls_shim.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
crypto_nrf_ecb.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
crypto_stm32.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
crypto_stm32_priv.h device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
crypto_tc_shim.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
crypto_tc_shim_priv.h