summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Farrugia <mark.farrugia@fiberdyne.com.au>2018-11-13 07:53:40 +1100
committerMark Farrugia <mark.farrugia@fiberdyne.com.au>2018-11-13 08:00:30 +1100
commita64111a81dff5e37defbcbfcef638a011897f44e (patch)
treed0bb731e3a0c74d3c07e3479aca46730ec1a8dc9 /sound
parentbd186ee6b13b7eb7b41f8d0fe0f78abd177a12a8 (diff)
Refactor/tidy snd_avirt_private_data
Make void* audiopath a struct and_avirt_audiopath, standardize naming in the struct Signed-off-by: Mark Farrugia <mark.farrugia@fiberdyne.com.au>
Diffstat (limited to 'sound')
-rw-r--r--sound/avirt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/avirt.h b/sound/avirt.h
index 52d2404..fd4ae32 100644
--- a/sound/avirt.h
+++ b/sound/avirt.h
@@ -67,10 +67,10 @@ struct snd_avirt_stream {
* Private Data Expansion
*/
struct snd_avirt_private_data {
- void *audiopath;
- void *ap_userdata;
+ struct snd_avirt_audiopath *audiopath;
+ void *ap_private_data;
- void (*private_free)(struct snd_pcm *pcm);
+ void (*ap_private_free)(struct snd_pcm *pcm);
};
/**