Skip to content

Commit d69c3d4

Browse files
lucasdemarchiThomas Hellström
authored andcommitted
drm/xe/ads: Use flexible-array
Zero-length arrays are deprecated and flexible arrays should be used instead: https://www.kernel.org/doc/html/v6.9-rc7/process/deprecated.html#zero-length-and-one-element-arrays Reported-by: kernel test robot <lkp@intel.com> Reported-by: Julia Lawall <julia.lawall@inria.fr> Closes: https://lore.kernel.org/r/202405051824.AmjAI5Pg-lkp@intel.com/ Fixes: dd08ebf ("drm/xe: Introduce a new DRM driver for Intel GPUs") Cc: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240506141917.205714-1-lucas.demarchi@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> (cherry picked from commit ee72842) Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
1 parent 2d9c72f commit d69c3d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/xe/xe_guc_ads.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ struct __guc_ads_blob {
107107
struct guc_engine_usage engine_usage;
108108
struct guc_um_init_params um_init_params;
109109
/* From here on, location is dynamic! Refer to above diagram. */
110-
struct guc_mmio_reg regset[0];
110+
struct guc_mmio_reg regset[];
111111
} __packed;
112112

113113
#define ads_blob_read(ads_, field_) \

0 commit comments

Comments
 (0)