Commit e0da486d authored by Jesper Juhl's avatar Jesper Juhl Committed by Linus Torvalds

[PATCH] warning fix in drivers/cdrom/mcd.c

drivers/cdrom/mcd.c:268: warning: passing arg 1 of `mcd_setup' discards qualifiers from pointer target type
Signed-off-by: default avatarJesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a42a3570
......@@ -244,7 +244,7 @@ static struct block_device_operations mcd_bdops =
static struct gendisk *mcd_gendisk;
static int __init mcd_setup(char *str)
static int __init mcd_setup(const char *str)
{
int ints[9];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment