mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
845ab40092
0-day reports compilation issues with non-ACPI platforms.
In file included from sound/soc/soc-acpi.c:17:0:
>> include/sound/soc-acpi.h:36:46: error: 'ACPI_ID_LEN' undeclared here
(not in a function); did you mean 'ACPI_FILE'?
snd_soc_acpi_find_name_from_hid(const u8 hid[ACPI_ID_LEN])
sound/soc/soc-acpi.c: At top level:
>> sound/soc/soc-acpi.c:174:16: error: expected declaration specifiers or
'...' before string constant
MODULE_LICENSE("GPL v2");
Add missing include files.
Fixes: 7feb2f786a
("ASoC: move ACPI common code out of Intel/sst tree")
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-By: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
|
|
/*
|
|
* Copyright (C) 2017, Intel Corporation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version
|
|
* 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef __LINUX_SND_SOC_ACPI_INTEL_MATCH_H
|
|
#define __LINUX_SND_SOC_ACPI_INTEL_MATCH_H
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/stddef.h>
|
|
#include <linux/acpi.h>
|
|
|
|
/*
|
|
* these tables are not constants, some fields can be used for
|
|
* pdata or machine ops
|
|
*/
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_haswell_machines[];
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_broadwell_machines[];
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_baytrail_legacy_machines[];
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_baytrail_machines[];
|
|
extern struct snd_soc_acpi_mach snd_soc_acpi_intel_cherrytrail_machines[];
|
|
|
|
#endif
|