diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/i2c_bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/device/i2c_bus.h b/src/include/device/i2c_bus.h index b5e77105b5..42f461dc9e 100644 --- a/src/include/device/i2c_bus.h +++ b/src/include/device/i2c_bus.h @@ -21,14 +21,14 @@ struct i2c_bus_operations { * `->dev->ops->ops_i2c_bus` or `->dev->ops->ops_smbus_bus` are * not NULL. */ -struct bus *i2c_link(struct device *); +struct bus *i2c_link(const struct device *dev); /* * Shorthand for `i2c_link(dev)->dev`. * * Returns NULL if i2c_link(dev) returns NULL. */ -static inline DEVTREE_CONST struct device *i2c_busdev(struct device *dev) +static inline DEVTREE_CONST struct device *i2c_busdev(const struct device *dev) { struct bus *const link = i2c_link(dev); return link ? link->dev : NULL; |