From: Geert Uytterhoeven Date: Mon, 4 Mar 2013 19:42:00 +0000 (+0100) Subject: staging/vt6656: Fix too large integer constant warning on 32-bit X-Git-Tag: v3.9-rc3~19^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa1e1234826e21197f818ca0abf519775ad4eb5c;p=pandora-kernel.git staging/vt6656: Fix too large integer constant warning on 32-bit drivers/staging/vt6656/card.c: In function ‘CARDqGetNextTBTT’: drivers/staging/vt6656/card.c:793: warning: integer constant is too large for ‘unsigned long’ type Commit c7b7cad0d8df823ea063c86a54316bbcbfa04a7c ("staging/vt6656: Fix sparse warning constant 0xffffffff00000000U is so big it is unsigned long") changed the constant to "0xffffffff00000000UL", but that only works on 64-bit. Change it "0xffffffff00000000ULL" to fix it for 32-bit, too. Signed-off-by: Geert Uytterhoeven Reviewed-by: Peter Huewe Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed