device: Const-ify all device driver instance pointers

Now that device_api attribute is unmodified at runtime, as well as all
the other attributes, it is possible to switch all device driver
instance to be constant.

A coccinelle rule is used for this:

@r_const_dev_1
  disable optional_qualifier
@
@@
-struct device *
+const struct device *

@r_const_dev_2
 disable optional_qualifier
@
@@
-struct device * const
+const struct device *

Fixes #27399

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2020-04-30 20:33:38 +02:00 committed by Carles Cufí
commit e18fcbba5a
1426 changed files with 9356 additions and 8368 deletions

View file

@ -31,7 +31,7 @@ LOG_MODULE_REGISTER(TMP112, CONFIG_SENSOR_LOG_LEVEL);
#define TMP112_TEMP_SCALE 62500
struct tmp112_data {
struct device *i2c;
const struct device *i2c;
int16_t sample;
};
@ -73,7 +73,7 @@ static int tmp112_reg_update(struct tmp112_data *drv_data, uint8_t reg,
return tmp112_reg_write(drv_data, reg, new_val);
}
static int tmp112_attr_set(struct device *dev,
static int tmp112_attr_set(const struct device *dev,
enum sensor_channel chan,
enum sensor_attribute attr,
const struct sensor_value *val)
@ -149,7 +149,8 @@ static int tmp112_attr_set(struct device *dev,
return 0;
}
static int tmp112_sample_fetch(struct device *dev, enum sensor_channel chan)
static int tmp112_sample_fetch(const struct device *dev,
enum sensor_channel chan)
{
struct tmp112_data *drv_data = dev->data;
uint16_t val;
@ -169,9 +170,9 @@ static int tmp112_sample_fetch(struct device *dev, enum sensor_channel chan)
return 0;
}
static int tmp112_channel_get(struct device *dev,
enum sensor_channel chan,
struct sensor_value *val)
static int tmp112_channel_get(const struct device *dev,
enum sensor_channel chan,
struct sensor_value *val)
{
struct tmp112_data *drv_data = dev->data;
int32_t uval;
@ -193,7 +194,7 @@ static const struct sensor_driver_api tmp112_driver_api = {
.channel_get = tmp112_channel_get,
};
int tmp112_init(struct device *dev)
int tmp112_init(const struct device *dev)
{
struct tmp112_data *drv_data = dev->data;