Fix typos

Fixed typos of int types.
Added inclusion of stdint.h.
This commit is contained in:
Takashi Iwai 2004-09-30 13:21:43 +00:00
parent e10aed638e
commit 3e5580d053

View file

@ -19,6 +19,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdint.h>
#define HDSP_MATRIX_MIXER_SIZE 2048
typedef enum {
@ -32,13 +34,13 @@ typedef enum {
typedef struct _snd_hdsp_peak_rms hdsp_peak_rms_t;
struct _snd_hdsp_peak_rms {
u_int32_t input_peaks[26];
u_int32_t playback_peaks[26];
u_int32_t output_peaks[28];
u_int64_t input_rms[26];
u_int64_t playback_rms[26];
uint32_t input_peaks[26];
uint32_t playback_peaks[26];
uint32_t output_peaks[28];
uint64_t input_rms[26];
uint64_t playback_rms[26];
/* These are only used for H96xx cards */
u_int64_t output_rms[26];
uint64_t output_rms[26];
};
#define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, hdsp_peak_rms_t)