mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	soundwire: debugfs: use controller id instead of link_id
link_id can be zero and if we have multiple controller instances
in a system like Qualcomm debugfs will end-up with duplicate namespace
resulting in incorrect debugfs entries.
Using id should give a unique debugfs directory entry and should fix below
warning too.
"debugfs: Directory 'master-0' with parent 'soundwire' already present!"
Fixes: bf03473d5b ("soundwire: add debugfs support")
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20210115162559.20869-1-srinivas.kandagatla@linaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
			
			
This commit is contained in:
		
							parent
							
								
									c219624c50
								
							
						
					
					
						commit
						6d5e7af1f6
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -19,7 +19,7 @@ void sdw_bus_debugfs_init(struct sdw_bus *bus)
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* create the debugfs master-N */
 | 
						/* create the debugfs master-N */
 | 
				
			||||||
	snprintf(name, sizeof(name), "master-%d", bus->link_id);
 | 
						snprintf(name, sizeof(name), "master-%d", bus->id);
 | 
				
			||||||
	bus->debugfs = debugfs_create_dir(name, sdw_debugfs_root);
 | 
						bus->debugfs = debugfs_create_dir(name, sdw_debugfs_root);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue