On Fri, Feb 14, 2020 at 02:16:10PM +0100, Jerome Brunet wrote:
On Thu 13 Feb 2020 at 19:21, Mark Brown broonie@kernel.org wrote:
+#ifdef CONFIG_DEBUG_FS
- component->debugfs_prefix = debugfs_prefix;
+#endif
You really shouldn't be doing this as it could conflict with something the machine driver wants to do however it's probably not going to be an issue in practice as it's not like there's going to be multiple SoCs in the card at once and if there were there'd doubltess be other issues.
I'm not sure I understand (and I'd prefer to :) )
As you said before, initially the there was supposed to be a 1:1 mapping between device and component. The component name is directly derived from the device name, and the debugfs directory is created from component name.
I understand why you're doing it but that feature is intended for the use of cards when they're integrating components, not for devices trying to register multiple components on the same device. This means that a card that tries to use the feature will conflict with what the driver is doing, but like I say there's no obvious use case for a card doing that.
Instead of addressing the debugfs side effect, maybe we could just make sure that each component name is unique within ASoC ? I'd be happy submit something if you think this can helpful.
That'd be better.