device: Apply config_info rename everywhere
Via coccinelle: @r_device_config@ struct device *D; @@ D-> - config_info + config And 2 grep/sed rules for macros: git grep -rlz 'dev)->config_info' | xargs -0 sed -i 's/dev)->config_info/dev)->config/g' git grep -rlz 'dev->config_info' | xargs -0 sed -i 's/dev->config_info/dev->config/g' Fixes #27397 Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
parent
a46b4a9921
commit
af6140cc0d
324 changed files with 1048 additions and 1071 deletions
|
@ -47,7 +47,7 @@ static inline struct spi_cc13xx_cc26xx_data *get_dev_data(struct device *dev)
|
|||
static inline const struct spi_cc13xx_cc26xx_config *
|
||||
get_dev_config(struct device *dev)
|
||||
{
|
||||
return dev->config_info;
|
||||
return dev->config;
|
||||
}
|
||||
|
||||
static int spi_cc13xx_cc26xx_configure(struct device *dev,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue