summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgenerate_text.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/generate_text.pl b/generate_text.pl
deleted file mode 100755
index 845fb44..0000000
--- a/generate_text.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl
-
-$lines = $ARGV[0];
-$chars = $ARGV[1];
-
-die unless $lines;
-die unless $chars;
-
-while ($lines--) {
- print int(rand(9)) x $chars;
- print "\n";
-}
ref='/cgit.cgi/linux/net-next.git/commit/Documentation/devicetree?h=nds-private-remove&id=a5de5b74a50113564a1e0850e2da96c37c35e55d'>a5de5b74a50113564a1e0850e2da96c37c35e55d (diff)
ASoC: Intel: bytcr_rt5640: fallback mechanism if MCLK is not enabled
Commit df1a2776a795 ("ASoC: Intel: bytcr_rt5640: add MCLK support") was merged but the corresponding clock framework patches have not, after being bumped from audio to clock to x86 domains. The missing clock-related patches result in a regression starting with 4.9 with the audio card not being created. Rather than reverting this commit and all following updates already queued up for 4.10, handle run-time dependency on MCLK and fall back to the previous bit-clock mode. This provides the same functionality as in 4.8 for Baytrail devices. On Baytrail-CR most devices remain silent with this fallback but additional patches are needed anyway. As suggested by Mark Brown, the fallback is only allowed with -ENOENT, all other run-time errors, including -EPROBE_DEFER, will stop the probe with no sound card registered. This patch should be applied to -stable as well as ASoC 4.10 fixes Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree')