The BDL pointer used in snd_hdac_dsp_prepare() should be declared as
__le32, as warned by sparse:
  sound/hda/hdac_stream.c:655:47: warning: incorrect type in argument 4 (different base types)
  sound/hda/hdac_stream.c:655:47:    expected restricted __le32 [usertype] **bdlp
  sound/hda/hdac_stream.c:655:47:    got unsigned int [usertype] **<noident>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
                         unsigned int byte_size, struct snd_dma_buffer *bufp)
 {
        struct hdac_bus *bus = azx_dev->bus;
-       u32 *bdl;
+       __le32 *bdl;
        int err;
 
        snd_hdac_dsp_lock(azx_dev);
        snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
 
        azx_dev->frags = 0;
-       bdl = (u32 *)azx_dev->bdl.area;
+       bdl = (__le32 *)azx_dev->bdl.area;
        err = setup_bdle(bus, bufp, azx_dev, &bdl, 0, byte_size, 0);
        if (err < 0)
                goto error;