mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
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: 53b9e26597 ("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
This commit is contained in:
parent
7fdd04e15a
commit
21dd3f8bc2
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user