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
|
@ -20,7 +20,7 @@ LOG_MODULE_DECLARE(IIS2MDC, CONFIG_SENSOR_LOG_LEVEL);
|
|||
|
||||
static int iis2mdc_enable_int(struct device *dev, int enable)
|
||||
{
|
||||
struct iis2mdc_data *iis2mdc = dev->driver_data;
|
||||
struct iis2mdc_data *iis2mdc = dev->data;
|
||||
|
||||
/* set interrupt on mag */
|
||||
return iis2mdc_drdy_on_pin_set(iis2mdc->ctx, enable);
|
||||
|
@ -31,7 +31,7 @@ int iis2mdc_trigger_set(struct device *dev,
|
|||
const struct sensor_trigger *trig,
|
||||
sensor_trigger_handler_t handler)
|
||||
{
|
||||
struct iis2mdc_data *iis2mdc = dev->driver_data;
|
||||
struct iis2mdc_data *iis2mdc = dev->data;
|
||||
union axis3bit16_t raw;
|
||||
|
||||
if (trig->chan == SENSOR_CHAN_MAGN_XYZ) {
|
||||
|
@ -53,7 +53,7 @@ int iis2mdc_trigger_set(struct device *dev,
|
|||
static void iis2mdc_handle_interrupt(void *arg)
|
||||
{
|
||||
struct device *dev = arg;
|
||||
struct iis2mdc_data *iis2mdc = dev->driver_data;
|
||||
struct iis2mdc_data *iis2mdc = dev->data;
|
||||
const struct iis2mdc_config *const config = dev->config;
|
||||
struct sensor_trigger drdy_trigger = {
|
||||
.type = SENSOR_TRIG_DATA_READY,
|
||||
|
@ -89,7 +89,7 @@ static void iis2mdc_gpio_callback(struct device *dev,
|
|||
static void iis2mdc_thread(int dev_ptr, int unused)
|
||||
{
|
||||
struct device *dev = INT_TO_POINTER(dev_ptr);
|
||||
struct iis2mdc_data *iis2mdc = dev->driver_data;
|
||||
struct iis2mdc_data *iis2mdc = dev->data;
|
||||
|
||||
ARG_UNUSED(unused);
|
||||
|
||||
|
@ -112,7 +112,7 @@ static void iis2mdc_work_cb(struct k_work *work)
|
|||
|
||||
int iis2mdc_init_interrupt(struct device *dev)
|
||||
{
|
||||
struct iis2mdc_data *iis2mdc = dev->driver_data;
|
||||
struct iis2mdc_data *iis2mdc = dev->data;
|
||||
const struct iis2mdc_config *const config = dev->config;
|
||||
|
||||
/* setup data ready gpio interrupt */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue