Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hdspm.h: include stdint.h in userspace

Fixes compilation error:

sound/hdspm.h:43:2: error: unknown type name ‘uint32_t’

Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Mikko Rapeli and committed by
Takashi Iwai
76a3aeac bfa76d49

+6
+6
include/uapi/sound/hdspm.h
··· 20 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 21 21 */ 22 22 23 + #ifdef __KERNEL__ 24 + #include <linux/types.h> 25 + #else 26 + #include <stdint.h> 27 + #endif 28 + 23 29 /* Maximum channels is 64 even on 56Mode you have 64playbacks to matrix */ 24 30 #define HDSPM_MAX_CHANNELS 64 25 31