diff options
Diffstat (limited to 'sound/soc/intel/skylake/skl.h')
| -rw-r--r-- | sound/soc/intel/skylake/skl.h | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/sound/soc/intel/skylake/skl.h b/sound/soc/intel/skylake/skl.h index 78aa8bdcb619..8d48cd7c56c8 100644 --- a/sound/soc/intel/skylake/skl.h +++ b/sound/soc/intel/skylake/skl.h @@ -23,6 +23,7 @@  #include <sound/hda_register.h>  #include <sound/hdaudio_ext.h> +#include <sound/hda_codec.h>  #include <sound/soc.h>  #include "skl-nhlt.h"  #include "skl-ssp-clk.h" @@ -71,7 +72,7 @@ struct skl_fw_config {  };  struct skl { -	struct hdac_bus hbus; +	struct hda_bus hbus;  	struct pci_dev *pci;  	unsigned int init_done:1; /* delayed init status */ @@ -105,8 +106,11 @@ struct skl {  	struct snd_soc_acpi_mach *mach;  }; -#define skl_to_bus(s)  (&(s)->hbus) -#define bus_to_skl(bus) container_of(bus, struct skl, hbus) +#define skl_to_bus(s)  (&(s)->hbus.core) +#define bus_to_skl(bus) container_of(bus, struct skl, hbus.core) + +#define skl_to_hbus(s) (&(s)->hbus) +#define hbus_to_skl(hbus) container_of((hbus), struct skl, (hbus))  /* to pass dai dma data */  struct skl_dma_params { @@ -117,6 +121,8 @@ struct skl_dma_params {  struct skl_machine_pdata {  	u32 dmic_num;  	bool use_tplg_pcm; /* use dais and dai links from topology */ +	const char *platform; +	u32 codec_mask;  };  struct skl_dsp_ops { |