From: Artem Bityutskiy Date: Sun, 28 Dec 2008 09:34:26 +0000 (+0200) Subject: UBIFS: fix checkpatch.pl warnings X-Git-Tag: Release-2010-05/1~3^2~126 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ded3661eadbd5af1cb532ce3fd16f2c9843df850;p=pandora-kernel.git UBIFS: fix checkpatch.pl warnings These are mostly long lines and wrong indentation warning fixes. But also there are two volatile variables and checkpatch.pl complains about them: WARNING: Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt + volatile int gc_seq; WARNING: Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt + volatile int gced_lnum; Well, we anyway use smp_wmb() for c->gc_seq and c->gced_lnum, so these 'volatile' modifiers can be just dropped. Signed-off-by: Artem Bityutskiy --- Reading git-diff-tree failed