From: Joe Perches Date: Tue, 18 Dec 2012 00:02:02 +0000 (-0800) Subject: checkpatch: find hex constants as a single IDENT X-Git-Tag: v3.8-rc1~74^2~96 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b7eaf6e1428be33f731287de963862e3846cd42;p=pandora-kernel.git checkpatch: find hex constants as a single IDENT Hexadecimal values are current found in 2 parts. A hex constant like 0x123456abcdef is found as 0 and then x123456abcdef and later coalesced. Instead, reverse the order of the 2 searches in $Constant to find 0x first, then 0 so that the entire hex constant is found all at once. Signed-off-by: Joe Perches Cc: Andy Whitcroft Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed