forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sdw/multi cpu dai support #1802
Merged
plbossart
merged 20 commits into
thesofproject:topic/sof-dev
from
plbossart:sdw/multi-cpu-dai
Feb 21, 2020
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
9a09de4
ASoC: fix for_rtd_codec_dai_rollback() macro
plbossart af255e9
ASoC: Add initial support for multiple CPU DAIs
shreyasnc1 1e044e5
ASoC: Add multiple CPU DAI support for PCM ops
shreyasnc1 ab98fab
ASoC: Add dapm_add_valid_dai_widget helper
shreyasnc1 5005d58
ASoC: Add multiple CPU DAI support in DAPM
shreyasnc1 d514a91
ASoC: Return error if the function does not support multi-cpu
bardliao 4097910
ASoC: pcm: check if cpu-dai supports a given stream
bardliao 0d5413a
ASoC: SOF: topology: connect dai widget to all cpu-dais
bardliao c2e38f1
soundwire: cadence: remove useless prototypes
plbossart b3359e6
soundwire: stream: only change state if needed
plbossart b27f0d8
ASoC: soc-dai: add get_sdw_stream() callback
plbossart eeef703
soundwire: intel: implement get_sdw_stream() operations
plbossart 216ebe4
soundwire: stream: add helper to startup/shutdown streams
plbossart f8914ba
soundwire: intel: remove stream allocation/free
plbossart b5c329a
soundwire: cadence: allocate/free dma_data in set_sdw_stream
plbossart 47b4921
soundwire: intel: don't free dma_data in DAI shutdown
plbossart 4476a47
ASoC: Intel: sdw_rt700: handle SoundWire stream creation in dailink
plbossart fced860
ASoC: Intel: sdw_rt711_rt1308_rt715: handle SoundWire stream creation…
plbossart 352771c
Revert "ASoC: pcm: check if cpu-dai supports a given stream"
plbossart 3578aae
[SQUASHME] ASoC: soc-generic-dmaengine-pcm: fix integer/pointer
plbossart File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this function returns a pointer. Should it have been
ERR_PTR(-EINVAL)
orNULL
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, fixed in update (reported independently by kbuild)