aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_drv.h
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2011-03-19 23:31:54 +0000
committerBen Skeggs <bskeggs@redhat.com>2011-05-16 10:47:25 +1000
commit0b89a072f942412c45d00f74e7e789e019e5de2c (patch)
treedddd389b7e1dc5d1b511b58056d0964d980fa0bf /drivers/gpu/drm/nouveau/nouveau_drv.h
parentf9ec8f6c8dea942bc4be5cc1f34c99df7a4d78ee (diff)
downloadkernel_samsung_smdk4412-0b89a072f942412c45d00f74e7e789e019e5de2c.zip
kernel_samsung_smdk4412-0b89a072f942412c45d00f74e7e789e019e5de2c.tar.gz
kernel_samsung_smdk4412-0b89a072f942412c45d00f74e7e789e019e5de2c.tar.bz2
drm/nouveau: Fix missing whitespace checkpatch.pl errors.
This patch fixes messages such as ERROR: space required after that ',' ERROR: spaces required around that '=' Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_drv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h
index 6b362d5..711ee0d 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.h
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.h
@@ -883,13 +883,13 @@ extern void nouveau_channel_ref(struct nouveau_channel *chan,
extern void nouveau_channel_idle(struct nouveau_channel *chan);
/* nouveau_object.c */
-#define NVOBJ_CLASS(d,c,e) do { \
+#define NVOBJ_CLASS(d, c, e) do { \
int ret = nouveau_gpuobj_class_new((d), (c), NVOBJ_ENGINE_##e); \
if (ret) \
return ret; \
} while (0)
-#define NVOBJ_MTHD(d,c,m,e) do { \
+#define NVOBJ_MTHD(d, c, m, e) do { \
int ret = nouveau_gpuobj_mthd_new((d), (c), (m), (e)); \
if (ret) \
return ret; \