All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/gvt: Use ARRAY_SIZE instead of hardcoded size
@ 2020-04-13 14:32 ` Jason Yan
  0 siblings, 0 replies; 11+ messages in thread
From: Jason Yan @ 2020-04-13 14:32 UTC (permalink / raw)
  To: zhenyuw, zhi.a.wang, jani.nikula, joonas.lahtinen, rodrigo.vivi,
	airlied, daniel, intel-gvt-dev, intel-gfx, dri-devel,
	linux-kernel
  Cc: Jason Yan

Fix the following coccicheck warning:

drivers/gpu/drm/i915/gvt/vgpu.c:127:30-31: WARNING: Use ARRAY_SIZE

Signed-off-by: Jason Yan <yanaijie@huawei.com>
---
 drivers/gpu/drm/i915/gvt/vgpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/gvt/vgpu.c b/drivers/gpu/drm/i915/gvt/vgpu.c
index 1d5ff88078bd..7d361623ff67 100644
--- a/drivers/gpu/drm/i915/gvt/vgpu.c
+++ b/drivers/gpu/drm/i915/gvt/vgpu.c
@@ -124,7 +124,7 @@ int intel_gvt_init_vgpu_types(struct intel_gvt *gvt)
 	 */
 	low_avail = gvt_aperture_sz(gvt) - HOST_LOW_GM_SIZE;
 	high_avail = gvt_hidden_sz(gvt) - HOST_HIGH_GM_SIZE;
-	num_types = sizeof(vgpu_types) / sizeof(vgpu_types[0]);
+	num_types = ARRAY_SIZE(vgpu_types);
 
 	gvt->types = kcalloc(num_types, sizeof(struct intel_vgpu_type),
 			     GFP_KERNEL);
-- 
2.21.1


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

end of thread, other threads:[~2020-04-15 12:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-13 14:32 [PATCH] drm/i915/gvt: Use ARRAY_SIZE instead of hardcoded size Jason Yan
2020-04-13 14:32 ` [Intel-gfx] " Jason Yan
2020-04-13 14:32 ` Jason Yan
2020-04-13 17:55 ` Joe Perches
2020-04-13 17:55   ` [Intel-gfx] " Joe Perches
2020-04-13 17:55   ` Joe Perches
2020-04-14 20:30 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/gvt: Use ARRAY_SIZE instead of hardcoded size (rev2) Patchwork
2020-04-14 20:36   ` Joe Perches
2020-04-14 20:47 ` [Intel-gfx] ✗ Fi.CI.DOCS: " Patchwork
2020-04-14 20:54 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-04-15 12:12 ` [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.