]> git.sur5r.net Git - u-boot/blob - arch/x86/cpu/queensbay/topcliff.c
Revert "x86: Convert MMC to driver model"
[u-boot] / arch / x86 / cpu / queensbay / topcliff.c
1 /*
2  * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <mmc.h>
9 #include <pci_ids.h>
10
11 static struct pci_device_id mmc_supported[] = {
12         { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SDIO_0 },
13         { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SDIO_1 },
14         {},
15 };
16
17 int cpu_mmc_init(bd_t *bis)
18 {
19         return pci_mmc_init("Topcliff SDHCI", mmc_supported);
20 }