Skip to content

Commit 21dd3f8

Browse files
LeviYeoReumSuzuki K Poulose
authored andcommitted
coresight: fix indentation error in cscfg_remove_owned_csdev_configs()
Fix wrong indentation in cscfg_remove_owned_csdev_configs() Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202506102238.XQfScl5x-lkp@intel.com/ Fixes: 53b9e26 ("coresight: holding cscfg_csdev_lock while removing cscfg from csdev") Signed-off-by: Yeoreum Yun <yeoreum.yun@arm.com> Reviewed-by: Leo Yan <leo.yan@arm.com> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Link: https://lore.kernel.org/r/20250611103025.939020-1-yeoreum.yun@arm.com
1 parent 7fdd04e commit 21dd3f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/hwtracing/coresight/coresight-syscfg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ static void cscfg_remove_owned_csdev_configs(struct coresight_device *csdev, voi
395395
if (list_empty(&csdev->config_csdev_list))
396396
return;
397397

398-
guard(raw_spinlock_irqsave)(&csdev->cscfg_csdev_lock);
398+
guard(raw_spinlock_irqsave)(&csdev->cscfg_csdev_lock);
399399

400400
list_for_each_entry_safe(config_csdev, tmp, &csdev->config_csdev_list, node) {
401401
if (config_csdev->config_desc->load_owner == load_owner)

0 commit comments

Comments
 (0)