]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
coresight: fix indentation error in cscfg_remove_owned_csdev_configs()
authorYeoreum Yun <yeoreum.yun@arm.com>
Wed, 11 Jun 2025 10:30:25 +0000 (11:30 +0100)
committerSuzuki K Poulose <suzuki.poulose@arm.com>
Tue, 23 Sep 2025 13:14:12 +0000 (14:14 +0100)
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: 53b9e2659719 ("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
drivers/hwtracing/coresight/coresight-syscfg.c

index 83dad24e0116d449e402f188dcab3b11ab4d0606..6836b05986e8091b4f8ad7d082d6a016f8cf7d74 100644 (file)
@@ -395,7 +395,7 @@ static void cscfg_remove_owned_csdev_configs(struct coresight_device *csdev, voi
        if (list_empty(&csdev->config_csdev_list))
                return;
 
-  guard(raw_spinlock_irqsave)(&csdev->cscfg_csdev_lock);
+       guard(raw_spinlock_irqsave)(&csdev->cscfg_csdev_lock);
 
        list_for_each_entry_safe(config_csdev, tmp, &csdev->config_csdev_list, node) {
                if (config_csdev->config_desc->load_owner == load_owner)