From: Dan Carpenter Date: Fri, 8 Nov 2013 09:52:24 +0000 (-0300) Subject: [media] exynos4-is: Cleanup a define in mipi-csis driver X-Git-Tag: v3.14-rc1~20^2~376 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1163236f5214e3447f1132a355a26db3db7d9f3;p=pandora-kernel.git [media] exynos4-is: Cleanup a define in mipi-csis driver This define is only used in s5pcsis_irq_handler(): if ((status & S5PCSIS_INTSRC_NON_IMAGE_DATA) && pktbuf->data) { The problem is that "status" is a 32 bit and (0xff << 28) is larger than 32 bits and that sets off a static checker warning. I consulted with Sylwester Nawrocki and the define should actually be (0xf << 28). Signed-off-by: Dan Carpenter Signed-off-by: Sylwester Nawrocki Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed