Skip to content

Commit 2d4b74a

Browse files
committed
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 <[email protected]> Reported-by: Julia Lawall <[email protected]> Closes: https://lore.kernel.org/r/[email protected]/ Fixes: dd08ebf ("drm/xe: Introduce a new DRM driver for Intel GPUs") Cc: Matthew Brost <[email protected]> Reviewed-by: Matthew Brost <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Signed-off-by: Lucas De Marchi <[email protected]> (cherry picked from commit ee72842) Signed-off-by: Lucas De Marchi <[email protected]>
1 parent dd5a440 commit 2d4b74a

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
@@ -100,7 +100,7 @@ struct __guc_ads_blob {
100100
struct guc_engine_usage engine_usage;
101101
struct guc_um_init_params um_init_params;
102102
/* From here on, location is dynamic! Refer to above diagram. */
103-
struct guc_mmio_reg regset[0];
103+
struct guc_mmio_reg regset[];
104104
} __packed;
105105

106106
#define ads_blob_read(ads_, field_) \

0 commit comments

Comments
 (0)