diff options
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/driver.h | 1 | ||||
-rw-r--r-- | include/sound/hdsp.h | 12 |
2 files changed, 6 insertions, 7 deletions
diff --git a/include/sound/driver.h b/include/sound/driver.h index 89c6a73f3920..3c522e59a33c 100644 --- a/include/sound/driver.h +++ b/include/sound/driver.h | |||
@@ -26,7 +26,6 @@ | |||
26 | #include "config.h" | 26 | #include "config.h" |
27 | #endif | 27 | #endif |
28 | 28 | ||
29 | #include <linux/config.h> | ||
30 | 29 | ||
31 | /* number of supported soundcards */ | 30 | /* number of supported soundcards */ |
32 | #ifdef CONFIG_SND_DYNAMIC_MINORS | 31 | #ifdef CONFIG_SND_DYNAMIC_MINORS |
diff --git a/include/sound/hdsp.h b/include/sound/hdsp.h index 25e1951a9955..dec6b1dc37ea 100644 --- a/include/sound/hdsp.h +++ b/include/sound/hdsp.h | |||
@@ -30,13 +30,13 @@ enum HDSP_IO_Type { | |||
30 | }; | 30 | }; |
31 | 31 | ||
32 | struct hdsp_peak_rms { | 32 | struct hdsp_peak_rms { |
33 | u32 input_peaks[26]; | 33 | __u32 input_peaks[26]; |
34 | u32 playback_peaks[26]; | 34 | __u32 playback_peaks[26]; |
35 | u32 output_peaks[28]; | 35 | __u32 output_peaks[28]; |
36 | u64 input_rms[26]; | 36 | __u64 input_rms[26]; |
37 | u64 playback_rms[26]; | 37 | __u64 playback_rms[26]; |
38 | /* These are only used for H96xx cards */ | 38 | /* These are only used for H96xx cards */ |
39 | u64 output_rms[26]; | 39 | __u64 output_rms[26]; |
40 | }; | 40 | }; |
41 | 41 | ||
42 | #define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, struct hdsp_peak_rms) | 42 | #define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, struct hdsp_peak_rms) |