From: Mauro Carvalho Chehab Date: Tue, 28 Oct 2014 12:50:36 +0000 (-0200) Subject: [media] lgdt3306a: Use hexadecimal values in lowercase X-Git-Tag: omap-for-v4.2/o2_dc~62^2~1^2~310 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4937ba94a0b024b15711b7c184dc4e5a660d900c;p=pandora-kernel.git [media] lgdt3306a: Use hexadecimal values in lowercase While this is not a mandatory rule at the CodingStyle, we prefer hexadecimal values in lowercase. Currently, there's a mix of lowercase and uppercase ons at lgdt3306a. So, convert all to lowercase with this small script: perl -ne 'if (m,0x([\dA-F]+),) { $o=$1; $n=lc $1; s,0x($o),0x$n, } print $_' Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed