git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34a5a2f
)
[media] lgdt3306a: Use hexadecimal values in lowercase
author
Mauro Carvalho Chehab
<mchehab@osg.samsung.com>
Tue, 28 Oct 2014 12:50:36 +0000
(10:50 -0200)
committer
Mauro Carvalho Chehab
<mchehab@osg.samsung.com>
Tue, 3 Mar 2015 13:34:11 +0000
(10:34 -0300)
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>
No differences found