diff options
author | Francois Dugast <francois.dugast@intel.com> | 2023-07-11 17:35:57 +0200 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2023-12-21 11:37:30 -0500 |
commit | 763931d25c7f40226c5e5edd8dcf90f2f2dfcddf (patch) | |
tree | 96b68ebc18279141d357ef5e91653c6f6cea73a9 /drivers/gpu/drm/xe/xe_guc_fwif.h | |
parent | 4ab5901cc0ed8951ae58b01740d0037dbbca8558 (diff) | |
download | lwn-763931d25c7f40226c5e5edd8dcf90f2f2dfcddf.tar.gz lwn-763931d25c7f40226c5e5edd8dcf90f2f2dfcddf.zip |
drm/xe: Cleanup CODE_INDENT style issues
Remove all existing style issues of type CODE_INDENT reported
by checkpatch.
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_guc_fwif.h')
-rw-r--r-- | drivers/gpu/drm/xe/xe_guc_fwif.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/gpu/drm/xe/xe_guc_fwif.h b/drivers/gpu/drm/xe/xe_guc_fwif.h index 27d132ce2087..e215e8b2c17a 100644 --- a/drivers/gpu/drm/xe/xe_guc_fwif.h +++ b/drivers/gpu/drm/xe/xe_guc_fwif.h @@ -64,19 +64,19 @@ struct guc_ctxt_registration_info { /* 32-bit KLV structure as used by policy updates and others */ struct guc_klv_generic_dw_t { - u32 kl; - u32 value; + u32 kl; + u32 value; } __packed; /* Format of the UPDATE_CONTEXT_POLICIES H2G data packet */ struct guc_update_engine_policy_header { - u32 action; - u32 guc_id; + u32 action; + u32 guc_id; } __packed; struct guc_update_engine_policy { - struct guc_update_engine_policy_header header; - struct guc_klv_generic_dw_t klv[GUC_CONTEXT_POLICIES_KLV_NUM_IDS]; + struct guc_update_engine_policy_header header; + struct guc_klv_generic_dw_t klv[GUC_CONTEXT_POLICIES_KLV_NUM_IDS]; } __packed; /* GUC_CTL_* - Parameters for loading the GuC */ |