diff options
author | Jeeja KP <jeeja.kp@intel.com> | 2015-08-01 17:10:40 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-08-07 16:26:01 +0300 |
commit | aba3dd5ace59d038a9d69e0f5319b6fec61012c8 (patch) | |
tree | ec8d271e04e79f18d8385702f8b1639a093cf1c6 /sound/soc/intel/skylake/skl-nhlt.h | |
parent | 9f2dd0270d81b283e11e39f9276113aef391e420 (diff) | |
download | linux-aba3dd5ace59d038a9d69e0f5319b6fec61012c8.tar.xz |
ASoC: Intel: Skylake: Use acpi header for NHLT header
Instead of defining own acpi header, use the available acpi
header defined in acpi framework.
Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-nhlt.h')
-rw-r--r-- | sound/soc/intel/skylake/skl-nhlt.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/sound/soc/intel/skylake/skl-nhlt.h b/sound/soc/intel/skylake/skl-nhlt.h index b0e2e4da42a1..3769f9fefe2b 100644 --- a/sound/soc/intel/skylake/skl-nhlt.h +++ b/sound/soc/intel/skylake/skl-nhlt.h @@ -20,17 +20,7 @@ #ifndef __SKL_NHLT_H__ #define __SKL_NHLT_H__ -struct acpi_desc_header { - u32 signature; - u32 length; - u8 revision; - u8 checksum; - u8 oem_id[6]; - u64 oem_table_id; - u32 oem_revision; - u32 creator_id; - u32 creator_revision; -} __packed; +#include <linux/acpi.h> struct wav_fmt { u16 fmt_tag; @@ -98,7 +88,7 @@ struct nhlt_endpoint { } __packed; struct nhlt_acpi_table { - struct acpi_desc_header header; + struct acpi_table_header header; u8 endpoint_count; struct nhlt_endpoint desc[0]; } __packed; |