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
|
@ -58,7 +58,7 @@ static struct nrf5_802154_data nrf5_data;
|
|||
((struct nrf5_802154_data * const)(dev)->driver_data)
|
||||
|
||||
#define NRF5_802154_CFG(dev) \
|
||||
((const struct nrf5_802154_config * const)(dev)->config_info)
|
||||
((const struct nrf5_802154_config * const)(dev)->config)
|
||||
|
||||
#if CONFIG_IEEE802154_VENDOR_OUI_ENABLE
|
||||
#define IEEE802154_NRF5_VENDOR_OUI CONFIG_IEEE802154_VENDOR_OUI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue