All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/arc: make arcpgu_debugfs_init return 0
@ 2020-02-18 17:28 ` Wambui Karuga
  0 siblings, 0 replies; 44+ messages in thread
From: Wambui Karuga @ 2020-02-18 17:28 UTC (permalink / raw)
  To: abrodkin, airlied, daniel; +Cc: gregkh, dri-devel, linux-kernel

As drm_debugfs_create_files should return void, remove its use as the
return value of arcpgu_debugfs_init and have the latter function
return 0 directly.

Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
---
 drivers/gpu/drm/arc/arcpgu_drv.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/arc/arcpgu_drv.c b/drivers/gpu/drm/arc/arcpgu_drv.c
index d6a6692db0ac..660b25f9588e 100644
--- a/drivers/gpu/drm/arc/arcpgu_drv.c
+++ b/drivers/gpu/drm/arc/arcpgu_drv.c
@@ -139,8 +139,10 @@ static struct drm_info_list arcpgu_debugfs_list[] = {
 
 static int arcpgu_debugfs_init(struct drm_minor *minor)
 {
-	return drm_debugfs_create_files(arcpgu_debugfs_list,
-		ARRAY_SIZE(arcpgu_debugfs_list), minor->debugfs_root, minor);
+	drm_debugfs_create_files(arcpgu_debugfs_list,
+				 ARRAY_SIZE(arcpgu_debugfs_list),
+				 minor->debugfs_root, minor);
+	return 0;
 }
 #endif
 
-- 
2.25.0


^ permalink raw reply related	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2020-02-24 13:59 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-18 17:28 [PATCH] drm/arc: make arcpgu_debugfs_init return 0 Wambui Karuga
2020-02-18 17:28 ` Wambui Karuga
2020-02-18 17:28 ` [PATCH] drm/arm: make hdlcd_debugfs_init " Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-24 13:59   ` Liviu Dudau
2020-02-24 13:59     ` Liviu Dudau
2020-02-18 17:28 ` [PATCH 1/2] drm/debugfs: remove checks for return value of drm_debugfs functions Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-18 19:09   ` Daniel Vetter
2020-02-18 19:09     ` Daniel Vetter
2020-02-18 17:28 ` [PATCH] drm/etnaviv: remove check for return value of drm_debugfs function Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-18 17:38   ` Lucas Stach
2020-02-18 17:38     ` Lucas Stach
2020-02-18 18:02     ` Wambui Karuga
2020-02-18 18:02       ` Wambui Karuga
2020-02-18 17:28 ` [PATCH] drm/i915: make i915_debugfs_register return void Wambui Karuga
2020-02-18 17:28   ` [Intel-gfx] " Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-18 17:28 ` [PATCH] drm/nouveau: remove checks for return value of debugfs functions Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-19  5:39   ` [Nouveau] " Ben Skeggs
2020-02-19  5:39     ` Ben Skeggs
2020-02-19  5:39     ` Ben Skeggs
2020-02-18 17:28 ` [PATCH] drm/v3d: make v3d_debugfs_init return 0 Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-19 18:46   ` Eric Anholt
2020-02-19 18:46     ` Eric Anholt
2020-02-18 17:28 ` [PATCH] drm/vc4: remove check of return value of drm_debugfs functions Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-18 17:28 ` [PATCH] drm/vram-helper: make drm_vram_mm_debugfs_init return 0 Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-19  6:00   ` Thomas Zimmermann
2020-02-19  6:00     ` Thomas Zimmermann
2020-02-18 17:28 ` [PATCH 2/2] drm: convert drm_debugfs functions to return void Wambui Karuga
2020-02-18 17:28   ` Wambui Karuga
2020-02-18 18:19 ` [PATCH] drm/arc: make arcpgu_debugfs_init return 0 Greg KH
2020-02-18 18:19   ` Greg KH
2020-02-18 19:00 ` Daniel Vetter
2020-02-18 19:00   ` Daniel Vetter
2020-02-18 19:18   ` Daniel Vetter
2020-02-18 19:18     ` Daniel Vetter
2020-02-19  0:54 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: make i915_debugfs_register return void Patchwork
2020-02-20 13:40 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.