int rsnd_debugfs_probe(struct snd_soc_component *component)
{ struct rsnd_priv *priv = dev_get_drvdata(component->dev); struct rsnd_dai *rdai; struct dentry *dir; char name[64]; int i;
/* Gen1 is not supported */ if (rsnd_is_gen1(priv)) return 0;
for_each_rsnd_dai(rdai, priv, i) { /* * created debugfs will be automatically * removed, nothing to do for _remove. * see * soc_cleanup_component_debugfs()
*/
snprintf(name, sizeof(name), "rdai%d", i);
dir = debugfs_create_dir(name, component->debugfs_root);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.