From: Takashi Iwai Date: Tue, 22 Dec 2020 15:10:16 +0000 (+0100) Subject: pcm: Fix a typo in SND_PCM_AUDIO_TSTAMP_TYPE_LAST definition X-Git-Tag: android-x86-8.1-r6~179 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a9cbfecd87777d76a83e5a912ca9bdcf48e31fa9;p=android-x86%2Fexternal-alsa-lib.git pcm: Fix a typo in SND_PCM_AUDIO_TSTAMP_TYPE_LAST definition It was wrongly defined with SNDRV_ prefix. Fix it. Fixes: ea02dbd20a53 ("pcm: Add snd_pcm_audio_tstamp_type_t constants") Signed-off-by: Takashi Iwai --- diff --git a/include/pcm.h b/include/pcm.h index cf1eea8b..e300b951 100644 --- a/include/pcm.h +++ b/include/pcm.h @@ -361,7 +361,7 @@ typedef enum _snd_pcm_audio_tstamp_type { SND_PCM_AUDIO_TSTAMP_TYPE_LINK_ABSOLUTE = 3, /**< link time reported by sample or wallclock counter, not reset on startup */ SND_PCM_AUDIO_TSTAMP_TYPE_LINK_ESTIMATED = 4, /**< link time estimated indirectly */ SND_PCM_AUDIO_TSTAMP_TYPE_LINK_SYNCHRONIZED = 5, /**< link time synchronized with system time */ - SND_PCM_AUDIO_TSTAMP_TYPE_LAST = SNDRV_PCM_AUDIO_TSTAMP_TYPE_LINK_SYNCHRONIZED + SND_PCM_AUDIO_TSTAMP_TYPE_LAST = SND_PCM_AUDIO_TSTAMP_TYPE_LINK_SYNCHRONIZED } snd_pcm_audio_tstamp_type_t; typedef struct _snd_pcm_audio_tstamp_config {