diff options
author | Mikko Rapeli <mikko.rapeli@iki.fi> | 2015-10-15 01:56:06 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-10-15 04:03:11 -0400 |
commit | ffc287c89169705d9a01d48e05453ab0eda631e4 (patch) | |
tree | a6d4dec41c164ef336cce0e5eb794b9c5a199b6e | |
parent | a82d24f83de2c63199acead488259fcdf947e90e (diff) |
ALSA: hdspm: use __u8, __u32 and __u64 from linux/types.h instead of stdint.h
Kernel headers should use linux/types.h based definitions.
Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | include/uapi/sound/hdspm.h | 40 |
1 files changed, 18 insertions, 22 deletions
diff --git a/include/uapi/sound/hdspm.h b/include/uapi/sound/hdspm.h index 5737332d38f2..c4db6f5b306e 100644 --- a/include/uapi/sound/hdspm.h +++ b/include/uapi/sound/hdspm.h | |||
@@ -20,11 +20,7 @@ | |||
20 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 20 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #ifdef __KERNEL__ | ||
24 | #include <linux/types.h> | 23 | #include <linux/types.h> |
25 | #else | ||
26 | #include <stdint.h> | ||
27 | #endif | ||
28 | 24 | ||
29 | /* Maximum channels is 64 even on 56Mode you have 64playbacks to matrix */ | 25 | /* Maximum channels is 64 even on 56Mode you have 64playbacks to matrix */ |
30 | #define HDSPM_MAX_CHANNELS 64 | 26 | #define HDSPM_MAX_CHANNELS 64 |
@@ -46,15 +42,15 @@ enum hdspm_speed { | |||
46 | /* -------------------- IOCTL Peak/RMS Meters -------------------- */ | 42 | /* -------------------- IOCTL Peak/RMS Meters -------------------- */ |
47 | 43 | ||
48 | struct hdspm_peak_rms { | 44 | struct hdspm_peak_rms { |
49 | uint32_t input_peaks[64]; | 45 | __u32 input_peaks[64]; |
50 | uint32_t playback_peaks[64]; | 46 | __u32 playback_peaks[64]; |
51 | uint32_t output_peaks[64]; | 47 | __u32 output_peaks[64]; |
52 | 48 | ||
53 | uint64_t input_rms[64]; | 49 | __u64 input_rms[64]; |
54 | uint64_t playback_rms[64]; | 50 | __u64 playback_rms[64]; |
55 | uint64_t output_rms[64]; | 51 | __u64 output_rms[64]; |
56 | 52 | ||
57 | uint8_t speed; /* enum {ss, ds, qs} */ | 53 | __u8 speed; /* enum {ss, ds, qs} */ |
58 | int status2; | 54 | int status2; |
59 | }; | 55 | }; |
60 | 56 | ||
@@ -155,21 +151,21 @@ enum hdspm_syncsource { | |||
155 | }; | 151 | }; |
156 | 152 | ||
157 | struct hdspm_status { | 153 | struct hdspm_status { |
158 | uint8_t card_type; /* enum hdspm_io_type */ | 154 | __u8 card_type; /* enum hdspm_io_type */ |
159 | enum hdspm_syncsource autosync_source; | 155 | enum hdspm_syncsource autosync_source; |
160 | 156 | ||
161 | uint64_t card_clock; | 157 | __u64 card_clock; |
162 | uint32_t master_period; | 158 | __u32 master_period; |
163 | 159 | ||
164 | union { | 160 | union { |
165 | struct { | 161 | struct { |
166 | uint8_t sync_wc; /* enum hdspm_sync */ | 162 | __u8 sync_wc; /* enum hdspm_sync */ |
167 | uint8_t sync_madi; /* enum hdspm_sync */ | 163 | __u8 sync_madi; /* enum hdspm_sync */ |
168 | uint8_t sync_tco; /* enum hdspm_sync */ | 164 | __u8 sync_tco; /* enum hdspm_sync */ |
169 | uint8_t sync_in; /* enum hdspm_sync */ | 165 | __u8 sync_in; /* enum hdspm_sync */ |
170 | uint8_t madi_input; /* enum hdspm_madi_input */ | 166 | __u8 madi_input; /* enum hdspm_madi_input */ |
171 | uint8_t channel_format; /* enum hdspm_madi_channel_format */ | 167 | __u8 channel_format; /* enum hdspm_madi_channel_format */ |
172 | uint8_t frame_format; /* enum hdspm_madi_frame_format */ | 168 | __u8 frame_format; /* enum hdspm_madi_frame_format */ |
173 | } madi; | 169 | } madi; |
174 | } card_specific; | 170 | } card_specific; |
175 | }; | 171 | }; |
@@ -184,7 +180,7 @@ struct hdspm_status { | |||
184 | #define HDSPM_ADDON_TCO 1 | 180 | #define HDSPM_ADDON_TCO 1 |
185 | 181 | ||
186 | struct hdspm_version { | 182 | struct hdspm_version { |
187 | uint8_t card_type; /* enum hdspm_io_type */ | 183 | __u8 card_type; /* enum hdspm_io_type */ |
188 | char cardname[20]; | 184 | char cardname[20]; |
189 | unsigned int serial; | 185 | unsigned int serial; |
190 | unsigned short firmware_rev; | 186 | unsigned short firmware_rev; |