Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1489677 > unrolled thread
| Started by | David Archuleta Jr <darchuletajr@gmail.com> |
|---|---|
| First post | 2016-09-23 02:40 +0200 |
| Last post | 2016-09-23 02:40 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] drivers: drm: nouveau: Fix brace coding style error David Archuleta Jr <darchuletajr@gmail.com> - 2016-09-23 02:40 +0200
| From | David Archuleta Jr <darchuletajr@gmail.com> |
|---|---|
| Date | 2016-09-23 02:40 +0200 |
| Subject | [PATCH] drivers: drm: nouveau: Fix brace coding style error |
| Message-ID | <skmGZ-4Xm-1@gated-at.bofh.it> |
Fixed a coding style issue. Else should follow brace.
Signed-off-by: David Archuleta Jr. <darchuletajr@gmail.com>
---
drivers/gpu/drm/nouveau/nouveau_display.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c
index afbf557..0d39e17 100644
--- a/drivers/gpu/drm/nouveau/nouveau_display.c
+++ b/drivers/gpu/drm/nouveau/nouveau_display.c
@@ -851,8 +851,7 @@ nouveau_finish_page_flip(struct nouveau_channel *chan,
/* Give up ownership of vblank for page-flipped crtc */
drm_crtc_vblank_put(s->crtc);
}
- }
- else {
+ } else {
/* Give up ownership of vblank for page-flipped crtc */
drm_crtc_vblank_put(s->crtc);
}
--
2.10.0
Back to top | Article view | linux.kernel
csiph-web