ccw_device_id are not supposed to change at runtime. All functions working with ccw_device_id provided by <asm/ccwdev.h> work with const ccw_device_id. So mark the non-const structs as const.
Signed-off-by: Arvind Yadav <[email protected]> --- drivers/s390/char/tape_3590.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/s390/char/tape_3590.c b/drivers/s390/char/tape_3590.c index e352047..576949e 100644 --- a/drivers/s390/char/tape_3590.c +++ b/drivers/s390/char/tape_3590.c @@ -1627,7 +1627,7 @@ static struct tape_discipline tape_discipline_3590 = { .mtop_array = tape_3590_mtop }; -static struct ccw_device_id tape_3590_ids[] = { +static const struct ccw_device_id tape_3590_ids[] = { {CCW_DEVICE_DEVTYPE(0x3590, 0, 0x3590, 0), .driver_info = tape_3590}, {CCW_DEVICE_DEVTYPE(0x3592, 0, 0x3592, 0), .driver_info = tape_3592}, { /* end of list */ } -- 2.7.4

