]> git.baikalelectronics.ru Git - kernel.git/commit
[media] lgdt3306a: Use hexadecimal values in lowercase
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 28 Oct 2014 12:50:36 +0000 (10:50 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 3 Mar 2015 13:34:11 +0000 (10:34 -0300)
commit4365be6d83718387bde863d0417848fa31ad0fde
tree75b9cb550fb36f23a313031e93ef4a5999bbd0fd
parentb2aebe14243c2e4e04dcc5ba69058495e15f4036
[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 <mchehab@osg.samsung.com>
drivers/media/dvb-frontends/lgdt3306a.c