From: Jeff Dike Date: Tue, 5 Feb 2008 06:30:48 +0000 (-0800) Subject: uml: reconst a parameter X-Git-Tag: v3.12-rc1~23738 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8299ca5ce10c9532848bd2e5526ba975f8d80d1d;p=kernel%2Fkernel-generic.git uml: reconst a parameter The previous const-ing patch consted a string which shouldn't have been, and I didn't notice the gcc warning. ubd_setup can't take a const char * because its address is assigned to something which expects a char *arg. Many setups modify the string they are given, they can't be const. Signed-off-by: Jeff Dike Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c index 4fe4d6b..b498f27 100644 --- a/arch/um/drivers/ubd_kern.c +++ b/arch/um/drivers/ubd_kern.c @@ -444,7 +444,7 @@ __uml_help(ubd_setup, " cluster filesystem and inappropriate at almost all other times.\n\n" ); -static int udb_setup(const char *str) +static int udb_setup(char *str) { printk("udb%s specified on command line is almost certainly a ubd -> " "udb TYPO\n", str);