Skip to content

Commit af46fe8

Browse files
geertugregkh
authored andcommitted
dio: Have dio_bus_match() callback take a const *
drivers/dio/dio-driver.c:128:11: error: initialization of ‘int (*)(struct device *, const struct device_driver *)’ from incompatible pointer type ‘int (*)(struct device *, struct device_driver *)’ [-Werror=incompatible-pointer-types] 128 | .match = dio_bus_match, | ^~~~~~~~~~~~~ drivers/dio/dio-driver.c:128:11: note: (near initialization for ‘dio_bus_type.match’) Reported-by: [email protected] Fixes: d69d804 ("driver core: have match() callback in struct bus_type take a const *") Signed-off-by: Geert Uytterhoeven <[email protected]> Link: https://lore.kernel.org/r/[email protected] [ added dio.h change - gregkh ] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent c9add2e commit af46fe8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

drivers/dio/dio-driver.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ void dio_unregister_driver(struct dio_driver *drv)
110110
* and 0 if there is no match.
111111
*/
112112

113-
static int dio_bus_match(struct device *dev, struct device_driver *drv)
113+
static int dio_bus_match(struct device *dev, const struct device_driver *drv)
114114
{
115115
struct dio_dev *d = to_dio_dev(dev);
116-
struct dio_driver *dio_drv = to_dio_driver(drv);
116+
const struct dio_driver *dio_drv = to_dio_driver(drv);
117117
const struct dio_device_id *ids = dio_drv->id_table;
118118

119119
if (!ids)

include/linux/dio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ struct dio_driver {
9393
struct device_driver driver;
9494
};
9595

96-
#define to_dio_driver(drv) container_of(drv, struct dio_driver, driver)
96+
#define to_dio_driver(drv) container_of_const(drv, struct dio_driver, driver)
9797

9898
/* DIO/DIO-II boards all have the following 8bit registers.
9999
* These are offsets from the base of the device.

0 commit comments

Comments
 (0)