drm/xe: Drop zero length arrays

Zero-length arrays as fake flexible arrays are deprecated and we are
moving towards adopting C99 flexible-array members instead.

Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
This commit is contained in:
Matthew Brost 2023-03-20 10:46:24 -07:00 committed by Rodrigo Vivi
parent ce79c6c43a
commit 044f0cfb19
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ struct xe_engine {
/** @entity: DRM sched entity for this engine (1 to 1 relationship) */
struct drm_sched_entity *entity;
/** @lrc: logical ring context for this engine */
struct xe_lrc lrc[0];
struct xe_lrc lrc[];
};
/**

View File

@ -40,7 +40,7 @@ struct xe_sched_job {
/** @migrate_flush_flags: Additional flush flags for migration jobs */
u32 migrate_flush_flags;
/** @batch_addr: batch buffer address of job */
u64 batch_addr[0];
u64 batch_addr[];
};
#endif