diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-09-10 18:33:48 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 10:49:27 -0400 |
commit | b9f09a485937d9c3fb524b2fa140fee1d94856d0 (patch) | |
tree | 6a248aa3c46e4723e0b58d3597e2a53698771812 /include/sound | |
parent | d44df2d0f22a688f4f3af3e0d6cbcf9a4516e1b5 (diff) |
[ALSA] Fix 'discards qualifiers' compile warnings in pcm.h
Fixed cast messes in pcm.h.
include/sound/pcm.h: In function ‘hw_param_interval_c’:
include/sound/pcm.h:800: warning: passing argument 1 of ‘hw_param_interval’ discards qualifiers from pointer target type
Simply redefine the inline functions again for const pointers.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/pcm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sound/pcm.h b/include/sound/pcm.h index 27f8ef48b5ec..76b34b5841eb 100644 --- a/include/sound/pcm.h +++ b/include/sound/pcm.h | |||
@@ -791,13 +791,13 @@ static inline struct snd_interval *hw_param_interval(struct snd_pcm_hw_params *p | |||
791 | static inline const struct snd_mask *hw_param_mask_c(const struct snd_pcm_hw_params *params, | 791 | static inline const struct snd_mask *hw_param_mask_c(const struct snd_pcm_hw_params *params, |
792 | snd_pcm_hw_param_t var) | 792 | snd_pcm_hw_param_t var) |
793 | { | 793 | { |
794 | return (const struct snd_mask *)hw_param_mask((struct snd_pcm_hw_params*) params, var); | 794 | return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; |
795 | } | 795 | } |
796 | 796 | ||
797 | static inline const struct snd_interval *hw_param_interval_c(const struct snd_pcm_hw_params *params, | 797 | static inline const struct snd_interval *hw_param_interval_c(const struct snd_pcm_hw_params *params, |
798 | snd_pcm_hw_param_t var) | 798 | snd_pcm_hw_param_t var) |
799 | { | 799 | { |
800 | return (const struct snd_interval *)hw_param_interval((struct snd_pcm_hw_params*) params, var); | 800 | return ¶ms->intervals[var - SNDRV_PCM_HW_PARAM_FIRST_INTERVAL]; |
801 | } | 801 | } |
802 | 802 | ||
803 | #define params_access(p) snd_mask_min(hw_param_mask((p), SNDRV_PCM_HW_PARAM_ACCESS)) | 803 | #define params_access(p) snd_mask_min(hw_param_mask((p), SNDRV_PCM_HW_PARAM_ACCESS)) |