From: Jingoo Han Date: Thu, 8 Aug 2013 08:29:48 +0000 (+0900) Subject: serial: samsung: fix casting warning X-Git-Tag: v3.12-rc1~182^2~71 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fdedf5d16d04238833d1d45a8e303fdb86bee3a;p=pandora-kernel.git serial: samsung: fix casting warning port->membase is (unsigned char __iomem *), not (unsigned long *) __set_bit() uses (unsigned long *) as the second argument. Thus, casting (unsigned long *)(unsigned long) is necessary to fix the following sparse warnings. drivers/tty/serial/samsung.c:142:33: warning: cast removes address space of expression drivers/tty/serial/samsung.c:161:33: warning: cast removes address space of expression drivers/tty/serial/samsung.c:176:33: warning: cast removes address space of expression drivers/tty/serial/samsung.c:526:40: warning: cast removes address space of expression Signed-off-by: Jingoo Han Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed