mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 05:46:47 +07:00
12cc291b0b
This patch moves the atom driver to use the common acpi match functions. Since atom driver has few more information in machine table, these are appended to table and set to NULL for common driver Signed-off-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
34 lines
992 B
C
34 lines
992 B
C
/*
|
|
* Copyright (C) 2013-15, 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.
|
|
*
|
|
*/
|
|
|
|
#include <linux/acpi.h>
|
|
|
|
/* acpi match */
|
|
struct sst_acpi_mach *sst_acpi_find_machine(struct sst_acpi_mach *machines);
|
|
|
|
/* Descriptor for SST ASoC machine driver */
|
|
struct sst_acpi_mach {
|
|
/* ACPI ID for the matching machine driver. Audio codec for instance */
|
|
const u8 id[ACPI_ID_LEN];
|
|
/* machine driver name */
|
|
const char *drv_name;
|
|
/* firmware file name */
|
|
const char *fw_filename;
|
|
|
|
/* board name */
|
|
const char *board;
|
|
void (*machine_quirk)(void);
|
|
void *pdata;
|
|
};
|