aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_irq.c
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-12-10 13:03:34 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-12-10 14:12:30 +0100
commit4dfd909f92d623d79a23985526314bb31bdd110a (patch)
treebbf6e650e80309a9b5e8910c5bae8b36a16bc761 /drivers/gpu/drm/drm_irq.c
parentdrm/tegra: Remove dummy ->load_lut() implementation (diff)
downloadlinux-dev-4dfd909f92d623d79a23985526314bb31bdd110a.tar.xz
linux-dev-4dfd909f92d623d79a23985526314bb31bdd110a.zip
drm: Miscellaneous checkpatch whitespace cleanups
A couple of whitespace changes required to silent various errors and warnings flagged by checkpatch. checkpatch requires that the opening brace be on the same line as a variable declaration. Furthermore an empty line is required after a block of variable declarations. Trailing whitespace as well as using spaces before tabs is considered an error or warning, respectively. Finally, the closing parenthesis of an if condition and the opening brace of the conditional block should be separated by a space. Signed-off-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to '')
-rw-r--r--drivers/gpu/drm/drm_irq.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c
index f5a5f18efa5b..fadcd16d2300 100644
--- a/drivers/gpu/drm/drm_irq.c
+++ b/drivers/gpu/drm/drm_irq.c
@@ -778,7 +778,7 @@ static struct timeval get_drm_timestamp(void)
/**
* drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
- * vblank interval
+ * vblank interval
* @dev: DRM device
* @crtc: which CRTC's vblank timestamp to retrieve
* @tvblank: Pointer to target struct timeval which should receive the timestamp
@@ -910,6 +910,7 @@ void drm_send_vblank_event(struct drm_device *dev, int crtc,
{
struct timeval now;
unsigned int seq;
+
if (crtc >= 0) {
seq = drm_vblank_count_and_time(dev, crtc, &now);
} else {