diff options
author | Francois Dugast <francois.dugast@intel.com> | 2023-07-11 16:24:30 +0200 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2023-12-21 11:37:30 -0500 |
commit | 4cd6d492595fdcbb158def8b175ca1558363e742 (patch) | |
tree | ecfba5b55922e1dc2cb07f44d60e895e896b14b7 /drivers/gpu/drm/xe/xe_gt_clock.c | |
parent | 04194a4f780895799cf83c86d5bb8bc11560a536 (diff) |
drm/xe: Cleanup SPACING style issues
Remove almost all existing style issues of type SPACING 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_gt_clock.c')
-rw-r--r-- | drivers/gpu/drm/xe/xe_gt_clock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/xe/xe_gt_clock.c b/drivers/gpu/drm/xe/xe_gt_clock.c index 7cf11078ff57..932b61e0cf67 100644 --- a/drivers/gpu/drm/xe/xe_gt_clock.c +++ b/drivers/gpu/drm/xe/xe_gt_clock.c @@ -38,13 +38,13 @@ static u32 get_crystal_clock_freq(u32 rpm_config_reg) rpm_config_reg); switch (crystal_clock) { - case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_24_MHZ : + case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_24_MHZ: return f24_mhz; - case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_19_2_MHZ : + case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_19_2_MHZ: return f19_2_mhz; - case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_38_4_MHZ : + case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_38_4_MHZ: return f38_4_mhz; - case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_25_MHZ : + case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_25_MHZ: return f25_mhz; default: XE_BUG_ON("NOT_POSSIBLE"); |