Commit bbd99307 authored by Mark Brown's avatar Mark Brown

ASoC: Remove redundant codec pointer from DAIs

The DAI structure has two pointers to the codec, one in the body of the
DAI and one in a union for a parent pointer.  Drop the parent pointer
version.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent b2907501
...@@ -205,11 +205,8 @@ struct snd_soc_dai { ...@@ -205,11 +205,8 @@ struct snd_soc_dai {
/* DAI private data */ /* DAI private data */
void *private_data; void *private_data;
/* parent codec/platform */ /* parent platform */
union {
struct snd_soc_codec *codec;
struct snd_soc_platform *platform; struct snd_soc_platform *platform;
};
struct list_head list; struct list_head list;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment