The patch titled dvb: input data pointer of cx24116_writeregN() should be const has been removed from the -mm tree. Its filename was dvb-input-data-pointer-of-cx24116_writeregn-should-be-const.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: dvb: input data pointer of cx24116_writeregN() should be const From: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> | drivers/media/dvb/frontends/cx24116.c:573: warning: passing argument 3 of 'cx24116_writeregN' discards qualifiers from pointer target type Make the `data' input pointer parameter of cx24116_writeregN() const to kill the warning. Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/media/dvb/frontends/cx24116.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/media/dvb/frontends/cx24116.c~dvb-input-data-pointer-of-cx24116_writeregn-should-be-const drivers/media/dvb/frontends/cx24116.c --- a/drivers/media/dvb/frontends/cx24116.c~dvb-input-data-pointer-of-cx24116_writeregn-should-be-const +++ a/drivers/media/dvb/frontends/cx24116.c @@ -200,7 +200,8 @@ static int cx24116_writereg(struct cx241 } /* Bulk byte writes to a single I2C address, for 32k firmware load */ -static int cx24116_writeregN(struct cx24116_state* state, int reg, u8 *data, u16 len) +static int cx24116_writeregN(struct cx24116_state* state, int reg, + const u8 *data, u16 len) { int ret = -EREMOTEIO; struct i2c_msg msg; _ Patches currently in -mm which might be from Geert.Uytterhoeven@xxxxxxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html