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:
parent
d86f79cbd7
commit
98d9b01322
498 changed files with 2085 additions and 2087 deletions
|
@ -21,7 +21,7 @@
|
|||
#define DEV_CFG(dev) \
|
||||
((const struct leuart_gecko_config * const)(dev)->config)
|
||||
#define DEV_DATA(dev) \
|
||||
((struct leuart_gecko_data * const)(dev)->driver_data)
|
||||
((struct leuart_gecko_data * const)(dev)->data)
|
||||
#define DEV_BASE(dev) \
|
||||
((LEUART_TypeDef *)(DEV_CFG(dev))->base)
|
||||
|
||||
|
@ -225,7 +225,7 @@ static void leuart_gecko_irq_callback_set(struct device *dev,
|
|||
uart_irq_callback_user_data_t cb,
|
||||
void *cb_data)
|
||||
{
|
||||
struct leuart_gecko_data *data = dev->driver_data;
|
||||
struct leuart_gecko_data *data = dev->data;
|
||||
|
||||
data->callback = cb;
|
||||
data->cb_data = cb_data;
|
||||
|
@ -234,7 +234,7 @@ static void leuart_gecko_irq_callback_set(struct device *dev,
|
|||
static void leuart_gecko_isr(void *arg)
|
||||
{
|
||||
struct device *dev = arg;
|
||||
struct leuart_gecko_data *data = dev->driver_data;
|
||||
struct leuart_gecko_data *data = dev->data;
|
||||
|
||||
if (data->callback) {
|
||||
data->callback(dev, data->cb_data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue