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
|
@ -29,7 +29,7 @@ int dmamux_stm32_configure(struct device *dev, uint32_t id,
|
|||
struct dma_config *config)
|
||||
{
|
||||
/* device is the dmamux, id is the dmamux channel from 0 */
|
||||
struct dmamux_stm32_data *data = dev->driver_data;
|
||||
struct dmamux_stm32_data *data = dev->data;
|
||||
const struct dmamux_stm32_config *dev_config = dev->config;
|
||||
|
||||
/*
|
||||
|
@ -78,7 +78,7 @@ int dmamux_stm32_configure(struct device *dev, uint32_t id,
|
|||
int dmamux_stm32_start(struct device *dev, uint32_t id)
|
||||
{
|
||||
const struct dmamux_stm32_config *dev_config = dev->config;
|
||||
struct dmamux_stm32_data *data = dev->driver_data;
|
||||
struct dmamux_stm32_data *data = dev->data;
|
||||
|
||||
/* check if this channel is valid */
|
||||
if (id >= dev_config->channel_nb) {
|
||||
|
@ -98,7 +98,7 @@ int dmamux_stm32_start(struct device *dev, uint32_t id)
|
|||
int dmamux_stm32_stop(struct device *dev, uint32_t id)
|
||||
{
|
||||
const struct dmamux_stm32_config *dev_config = dev->config;
|
||||
struct dmamux_stm32_data *data = dev->driver_data;
|
||||
struct dmamux_stm32_data *data = dev->data;
|
||||
|
||||
/* check if this channel is valid */
|
||||
if (id >= dev_config->channel_nb) {
|
||||
|
@ -119,7 +119,7 @@ int dmamux_stm32_reload(struct device *dev, uint32_t id,
|
|||
uint32_t src, uint32_t dst, size_t size)
|
||||
{
|
||||
const struct dmamux_stm32_config *dev_config = dev->config;
|
||||
struct dmamux_stm32_data *data = dev->driver_data;
|
||||
struct dmamux_stm32_data *data = dev->data;
|
||||
|
||||
/* check if this channel is valid */
|
||||
if (id >= dev_config->channel_nb) {
|
||||
|
@ -139,7 +139,7 @@ int dmamux_stm32_reload(struct device *dev, uint32_t id,
|
|||
|
||||
static int dmamux_stm32_init(struct device *dev)
|
||||
{
|
||||
struct dmamux_stm32_data *data = dev->driver_data;
|
||||
struct dmamux_stm32_data *data = dev->data;
|
||||
const struct dmamux_stm32_config *config = dev->config;
|
||||
struct device *clk =
|
||||
device_get_binding(STM32_CLOCK_CONTROL_NAME);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue