[ALSA] Remove xxx_t typedefs: PCI HDSP
Modules: RME HDSP driver Remove xxx_t typedefs from the PCI HDSP driver. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
4b32f1aae2
commit
55e957d832
2 changed files with 393 additions and 400 deletions
|
@ -21,17 +21,15 @@
|
||||||
|
|
||||||
#define HDSP_MATRIX_MIXER_SIZE 2048
|
#define HDSP_MATRIX_MIXER_SIZE 2048
|
||||||
|
|
||||||
typedef enum {
|
enum HDSP_IO_Type {
|
||||||
Digiface,
|
Digiface,
|
||||||
Multiface,
|
Multiface,
|
||||||
H9652,
|
H9652,
|
||||||
H9632,
|
H9632,
|
||||||
Undefined,
|
Undefined,
|
||||||
} HDSP_IO_Type;
|
};
|
||||||
|
|
||||||
typedef struct _snd_hdsp_peak_rms hdsp_peak_rms_t;
|
struct hdsp_peak_rms {
|
||||||
|
|
||||||
struct _snd_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];
|
||||||
|
@ -41,11 +39,9 @@ struct _snd_hdsp_peak_rms {
|
||||||
u64 output_rms[26];
|
u64 output_rms[26];
|
||||||
};
|
};
|
||||||
|
|
||||||
#define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, hdsp_peak_rms_t)
|
#define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, struct hdsp_peak_rms)
|
||||||
|
|
||||||
typedef struct _snd_hdsp_config_info hdsp_config_info_t;
|
struct hdsp_config_info {
|
||||||
|
|
||||||
struct _snd_hdsp_config_info {
|
|
||||||
unsigned char pref_sync_ref;
|
unsigned char pref_sync_ref;
|
||||||
unsigned char wordclock_sync_check;
|
unsigned char wordclock_sync_check;
|
||||||
unsigned char spdif_sync_check;
|
unsigned char spdif_sync_check;
|
||||||
|
@ -71,40 +67,41 @@ struct _snd_hdsp_config_info {
|
||||||
unsigned char analog_extension_board;
|
unsigned char analog_extension_board;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define SNDRV_HDSP_IOCTL_GET_CONFIG_INFO _IOR('H', 0x41, hdsp_config_info_t)
|
#define SNDRV_HDSP_IOCTL_GET_CONFIG_INFO _IOR('H', 0x41, struct hdsp_config_info)
|
||||||
|
|
||||||
typedef struct _snd_hdsp_firmware hdsp_firmware_t;
|
struct hdsp_firmware {
|
||||||
|
|
||||||
struct _snd_hdsp_firmware {
|
|
||||||
void __user *firmware_data; /* 24413 x 4 bytes */
|
void __user *firmware_data; /* 24413 x 4 bytes */
|
||||||
};
|
};
|
||||||
|
|
||||||
#define SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE _IOW('H', 0x42, hdsp_firmware_t)
|
#define SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE _IOW('H', 0x42, struct hdsp_firmware)
|
||||||
|
|
||||||
typedef struct _snd_hdsp_version hdsp_version_t;
|
struct hdsp_version {
|
||||||
|
enum HDSP_IO_Type io_type;
|
||||||
struct _snd_hdsp_version {
|
|
||||||
HDSP_IO_Type io_type;
|
|
||||||
unsigned short firmware_rev;
|
unsigned short firmware_rev;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define SNDRV_HDSP_IOCTL_GET_VERSION _IOR('H', 0x43, hdsp_version_t)
|
#define SNDRV_HDSP_IOCTL_GET_VERSION _IOR('H', 0x43, struct hdsp_version)
|
||||||
|
|
||||||
typedef struct _snd_hdsp_mixer hdsp_mixer_t;
|
struct hdsp_mixer {
|
||||||
|
|
||||||
struct _snd_hdsp_mixer {
|
|
||||||
unsigned short matrix[HDSP_MATRIX_MIXER_SIZE];
|
unsigned short matrix[HDSP_MATRIX_MIXER_SIZE];
|
||||||
};
|
};
|
||||||
|
|
||||||
#define SNDRV_HDSP_IOCTL_GET_MIXER _IOR('H', 0x44, hdsp_mixer_t)
|
#define SNDRV_HDSP_IOCTL_GET_MIXER _IOR('H', 0x44, struct hdsp_mixer)
|
||||||
|
|
||||||
typedef struct _snd_hdsp_9632_aeb hdsp_9632_aeb_t;
|
struct hdsp_9632_aeb {
|
||||||
|
|
||||||
struct _snd_hdsp_9632_aeb {
|
|
||||||
int aebi;
|
int aebi;
|
||||||
int aebo;
|
int aebo;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define SNDRV_HDSP_IOCTL_GET_9632_AEB _IOR('H', 0x45, hdsp_9632_aeb_t)
|
#define SNDRV_HDSP_IOCTL_GET_9632_AEB _IOR('H', 0x45, struct hdsp_9632_aeb)
|
||||||
|
|
||||||
|
/* typedefs for compatibility to user-space */
|
||||||
|
typedef enum HDSP_IO_Type HDSP_IO_Type;
|
||||||
|
typedef struct hdsp_peak_rms hdsp_peak_rms_t;
|
||||||
|
typedef struct hdsp_config_info hdsp_config_info_t;
|
||||||
|
typedef struct hdsp_firmware hdsp_firmware_t;
|
||||||
|
typedef struct hdsp_version hdsp_version_t;
|
||||||
|
typedef struct hdsp_mixer hdsp_mixer_t;
|
||||||
|
typedef struct hdsp_9632_aeb hdsp_9632_aeb_t;
|
||||||
|
|
||||||
#endif /* __SOUND_HDSP_H */
|
#endif /* __SOUND_HDSP_H */
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue