pci: sandbox: swap_case: Declare dynamic driver matching
This adds a U_BOOT_PCI_DEVICE() declaration to the swap_case driver. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4345998ae9
commit
59a160e8b9
@ -16,6 +16,10 @@
|
||||
#define SANDBOX_PCI_CLASS_CODE PCI_CLASS_CODE_COMM
|
||||
#define SANDBOX_PCI_CLASS_SUB_CODE PCI_CLASS_SUB_CODE_COMM_SERIAL
|
||||
|
||||
/* Useful for PCI_VDEVICE() macro */
|
||||
#define PCI_VENDOR_ID_SANDBOX SANDBOX_PCI_VENDOR_ID
|
||||
#define SWAP_CASE_DRV_DATA 0x55aa
|
||||
|
||||
#define SANDBOX_CLK_RATE 32768
|
||||
|
||||
/* System controller driver data */
|
||||
|
@ -285,3 +285,10 @@ U_BOOT_DRIVER(sandbox_swap_case_emul) = {
|
||||
.priv_auto_alloc_size = sizeof(struct swap_case_priv),
|
||||
.platdata_auto_alloc_size = sizeof(struct swap_case_platdata),
|
||||
};
|
||||
|
||||
static struct pci_device_id sandbox_swap_case_supported[] = {
|
||||
{ PCI_VDEVICE(SANDBOX, SANDBOX_PCI_DEVICE_ID), SWAP_CASE_DRV_DATA },
|
||||
{},
|
||||
};
|
||||
|
||||
U_BOOT_PCI_DEVICE(sandbox_swap_case_emul, sandbox_swap_case_supported);
|
||||
|
Loading…
Reference in New Issue
Block a user