zephyr/drivers/wifi/esp
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
esp_offload.c drivers: wifi: esp: Fix issue with incorrect tx timeout 2020-07-22 15:06:41 +03:00
esp_socket.c zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
esp.c device: Apply driver_api/data attributes rename everywhere 2020-08-11 19:30:53 +02:00
esp.h drivers: wifi: esp: Improvements to ESP driver 2020-07-02 08:52:28 -04:00
Kconfig.esp drivers: wifi: esp: Improvements to ESP driver 2020-07-02 08:52:28 -04:00