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>
This commit is contained in:
Tomasz Bursztyka 2020-05-28 21:23:02 +02:00 committed by Carles Cufí
commit 98d9b01322
498 changed files with 2085 additions and 2087 deletions

View file

@ -87,7 +87,7 @@ static uint32_t wdt_sam0_timeout_to_wdt_period(uint32_t timeout_ms)
static void wdt_sam0_isr(struct device *dev)
{
struct wdt_sam0_dev_data *data = dev->driver_data;
struct wdt_sam0_dev_data *data = dev->data;
WDT_REGS->INTFLAG.reg = WDT_INTFLAG_EW;
@ -98,7 +98,7 @@ static void wdt_sam0_isr(struct device *dev)
static int wdt_sam0_setup(struct device *dev, uint8_t options)
{
struct wdt_sam0_dev_data *data = dev->driver_data;
struct wdt_sam0_dev_data *data = dev->data;
if (wdt_sam0_is_enabled()) {
LOG_ERR("Watchdog already setup");
@ -142,7 +142,7 @@ static int wdt_sam0_disable(struct device *dev)
static int wdt_sam0_install_timeout(struct device *dev,
const struct wdt_timeout_cfg *cfg)
{
struct wdt_sam0_dev_data *data = dev->driver_data;
struct wdt_sam0_dev_data *data = dev->data;
uint32_t window, per;
/* CONFIG is enable protected, error out if already enabled */
@ -227,7 +227,7 @@ timeout_invalid:
static int wdt_sam0_feed(struct device *dev, int channel_id)
{
struct wdt_sam0_dev_data *data = dev->driver_data;
struct wdt_sam0_dev_data *data = dev->data;
if (!data->timeout_valid) {
LOG_ERR("No valid timeout installed");