Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Minor debugging improvements

Merge series from Stephen Gordon <gordoste@iinet.net.au>:

Some minor tweaks to debugging for dai_links.

+6 -2
+6 -2
include/sound/simple_card_utils.h
··· 264 264 simple_util_debug_dai(priv, "codec", dai); 265 265 266 266 if (link->name) 267 - dev_dbg(dev, "dai name = %s\n", link->name); 267 + dev_dbg(dev, "link name = %s\n", link->name); 268 268 if (link->dai_fmt) 269 - dev_dbg(dev, "dai format = %04x\n", link->dai_fmt); 269 + dev_dbg(dev, "link format = %04x\n", link->dai_fmt); 270 + if (link->playback_only) 271 + dev_dbg(dev, "link has playback_only"); 272 + if (link->capture_only) 273 + dev_dbg(dev, "link has capture_only"); 270 274 if (props->adata.convert_rate) 271 275 dev_dbg(dev, "convert_rate = %d\n", props->adata.convert_rate); 272 276 if (props->adata.convert_channels)