We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59ef8e0 commit 99883f7Copy full SHA for 99883f7
test-case/check-sof-logger.sh
@@ -71,8 +71,10 @@ sof_alsa_card_found()
71
# note: assumes SOF card names to start with "sof", e.g.
72
# - /proc/asound/sofsoundwire/id
73
# - /proc/asound/sofhdadsp/id
74
- test -e /proc/asound/sofsoundwire/id ||
75
- test -e /proc/asound/sofhdadsp/id
+ for i in /proc/asound/sof*/id; do
+ if test -e "$i"; then return 0; fi
76
+ done
77
+ return 1
78
}
79
80
wait_for_sof_alsa_card()
0 commit comments