mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
mmc: pci_mmc.c should build with ACPIGEN=n
sandbox_defconfig builds the PCI MMC driver. It should be possible to
build the sandbox without ACPI support.
ACPI support in the PCI MMC driver is only needed when creating an ACPI
table. Fix building with ACPIGEN=n.
Fixes: dba7ee419d
("acpi: mmc: Generate ACPI info for the PCI SD Card")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
233662411d
commit
2785fc4868
1 changed files with 3 additions and 0 deletions
|
@ -86,6 +86,7 @@ static int pci_mmc_bind(struct udevice *dev)
|
|||
return sdhci_bind(dev, &plat->mmc, &plat->cfg);
|
||||
}
|
||||
|
||||
__maybe_unused
|
||||
static int pci_mmc_acpi_fill_ssdt(const struct udevice *dev,
|
||||
struct acpi_ctx *ctx)
|
||||
{
|
||||
|
@ -138,7 +139,9 @@ static int pci_mmc_acpi_fill_ssdt(const struct udevice *dev,
|
|||
}
|
||||
|
||||
struct acpi_ops pci_mmc_acpi_ops = {
|
||||
#ifdef CONFIG_ACPIGEN
|
||||
.fill_ssdt = pci_mmc_acpi_fill_ssdt,
|
||||
#endif
|
||||
};
|
||||
|
||||
static const struct udevice_id pci_mmc_match[] = {
|
||||
|
|
Loading…
Reference in a new issue