提交 888855dc 编写于 作者: D David Woodhouse

Fix integer types in <sound/hdsp.h> SNDRV_HDSP_IOCTL_GET_PEAK_RMS ioctl

We should be using __u32 et al, not the kernel-private types.
Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
上级 423bc7b2
...@@ -30,13 +30,13 @@ enum HDSP_IO_Type { ...@@ -30,13 +30,13 @@ enum HDSP_IO_Type {
}; };
struct hdsp_peak_rms { struct hdsp_peak_rms {
u32 input_peaks[26]; __u32 input_peaks[26];
u32 playback_peaks[26]; __u32 playback_peaks[26];
u32 output_peaks[28]; __u32 output_peaks[28];
u64 input_rms[26]; __u64 input_rms[26];
u64 playback_rms[26]; __u64 playback_rms[26];
/* These are only used for H96xx cards */ /* These are only used for H96xx cards */
u64 output_rms[26]; __u64 output_rms[26];
}; };
#define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, struct hdsp_peak_rms) #define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, struct hdsp_peak_rms)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册