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
|
@ -63,7 +63,7 @@ static int opt3001_reg_update(struct opt3001_data *drv_data, uint8_t reg,
|
|||
|
||||
static int opt3001_sample_fetch(struct device *dev, enum sensor_channel chan)
|
||||
{
|
||||
struct opt3001_data *drv_data = dev->driver_data;
|
||||
struct opt3001_data *drv_data = dev->data;
|
||||
uint16_t value;
|
||||
|
||||
__ASSERT_NO_MSG(chan == SENSOR_CHAN_ALL || chan == SENSOR_CHAN_LIGHT);
|
||||
|
@ -82,7 +82,7 @@ static int opt3001_sample_fetch(struct device *dev, enum sensor_channel chan)
|
|||
static int opt3001_channel_get(struct device *dev, enum sensor_channel chan,
|
||||
struct sensor_value *val)
|
||||
{
|
||||
struct opt3001_data *drv_data = dev->driver_data;
|
||||
struct opt3001_data *drv_data = dev->data;
|
||||
int32_t uval;
|
||||
|
||||
if (chan != SENSOR_CHAN_LIGHT) {
|
||||
|
@ -112,7 +112,7 @@ static const struct sensor_driver_api opt3001_driver_api = {
|
|||
|
||||
static int opt3001_chip_init(struct device *dev)
|
||||
{
|
||||
struct opt3001_data *drv_data = dev->driver_data;
|
||||
struct opt3001_data *drv_data = dev->data;
|
||||
uint16_t value;
|
||||
|
||||
drv_data->i2c = device_get_binding(DT_INST_BUS_LABEL(0));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue