[PATCH] drm/plane: Fix a couple of checkpatch warnings

2014-05-13 Thread Daniel Vetter
On Tue, May 13, 2014 at 08:32:31AM -0700, Matt Roper wrote: > On Tue, May 13, 2014 at 04:58:35PM +0200, Thierry Reding wrote: > > From: Thierry Reding > > > > Code should be indented using tabs rather than spaces (see CodingStyle) > > and the canonical form to declare a constant static variable i

[PATCH] drm/plane: Fix a couple of checkpatch warnings

2014-05-13 Thread Thierry Reding
From: Thierry Reding Code should be indented using tabs rather than spaces (see CodingStyle) and the canonical form to declare a constant static variable is using "static const" rather than "const static". Fixes the following warnings from checkpatch: $ scripts/checkpatch.pl -f drivers/g

[PATCH] drm/plane: Fix a couple of checkpatch warnings

2014-05-13 Thread Matt Roper
On Tue, May 13, 2014 at 04:58:35PM +0200, Thierry Reding wrote: > From: Thierry Reding > > Code should be indented using tabs rather than spaces (see CodingStyle) > and the canonical form to declare a constant static variable is using > "static const" rather than "const static". Fixes the followi