unsigned long private_value,
                           struct snd_pcm_chmap **info_ret);
 
+/* Strong-typed conversion of pcm_format to bitwise */
+static inline u64 pcm_format_to_bits(snd_pcm_format_t pcm_format)
+{
+       return 1ULL << (__force int) pcm_format;
+}
+
 #endif /* __SOUND_PCM_H */
 
         */
        if (other->active) {
                /* FIXME: is this guaranteed by the alsa api? */
-               hw->formats &= (1ULL << i2sdev->format);
+               hw->formats &= pcm_format_to_bits(i2sdev->format);
                /* see above, restrict rates to the one we already have */
                hw->rate_min = i2sdev->rate;
                hw->rate_max = i2sdev->rate;
 
                runtime->hw.rate_max = chip->cur_rate;
        }
        if (chip->cur_format)
-               runtime->hw.formats = (1ULL << chip->cur_format);
+               runtime->hw.formats = pcm_format_to_bits(chip->cur_format);
        mutex_unlock(&opened_mutex);
        chip->playback_substream = substream;
        return 0;
                runtime->hw.rate_max = chip->cur_rate;
        }
        if (chip->cur_format)
-               runtime->hw.formats = (1ULL << chip->cur_format);
+               runtime->hw.formats = pcm_format_to_bits(chip->cur_format);
        mutex_unlock(&opened_mutex);
        chip->capture_substream = substream;
        return 0;
 
        struct loopback_pcm *dpcm = runtime->private_data;
        struct loopback_cable *cable = dpcm->cable;
 
-       cable->hw.formats = (1ULL << runtime->format);
+       cable->hw.formats = pcm_format_to_bits(runtime->format);
        cable->hw.rate_min = runtime->rate;
        cable->hw.rate_max = runtime->rate;
        cable->hw.channels_min = runtime->channels;
 
                if (!err)
                        err = hpi_outstream_query_format(h_stream, &hpi_format);
                if (!err && (hpi_to_alsa_formats[format] != -1))
-                       formats |= (1ULL << hpi_to_alsa_formats[format]);
+                       formats |= pcm_format_to_bits(hpi_to_alsa_formats[format]);
        }
        return formats;
 }
                if (!err)
                        err = hpi_instream_query_format(h_stream, &hpi_format);
                if (!err)
-                       formats |= (1ULL << hpi_to_alsa_formats[format]);
+                       formats |= pcm_format_to_bits(hpi_to_alsa_formats[format]);
        }
        return formats;
 }
 
 {
        struct usb_interface_descriptor *altsd = get_iface_desc(iface);
        int protocol = altsd->bInterfaceProtocol;
-       int pcm_format, ret;
+       snd_pcm_format_t pcm_format;
+       int ret;
 
        if (fmt->bFormatType == UAC_FORMAT_TYPE_III) {
                /* FIXME: the format type is really IECxxx
                default:
                        pcm_format = SNDRV_PCM_FORMAT_S16_LE;
                }
-               fp->formats = 1uLL << pcm_format;
+               fp->formats = pcm_format_to_bits(pcm_format);
        } else {
                fp->formats = parse_audio_format_i_type(chip, fp, format,
                                                        fmt, protocol);
 
        int cur_attr = 0, attr;
 
        list_for_each_entry(fp, &subs->fmt_list, list) {
-               if (!(fp->formats & (1uLL << subs->pcm_format)))
+               if (!(fp->formats & pcm_format_to_bits(subs->pcm_format)))
                        continue;
                if (fp->channels != subs->channels)
                        continue;
                return 0;
        }
 
-       if (!(fp->formats & (1ULL << pcm_format))) {
+       if (!(fp->formats & pcm_format_to_bits(pcm_format))) {
                snd_printdd("%s: (fmt @%p) no match for format %d\n", __func__,
                        fp, pcm_format);
                return 0;
 
                snd_iprintf(buffer, "    Altset %d\n", fp->altsetting);
                snd_iprintf(buffer, "    Format:");
                for (fmt = 0; fmt <= SNDRV_PCM_FORMAT_LAST; ++fmt)
-                       if (fp->formats & (1uLL << fmt))
+                       if (fp->formats & pcm_format_to_bits(fmt))
                                snd_iprintf(buffer, " %s",
                                            snd_pcm_format_name(fmt));
                snd_iprintf(buffer, "\n");