mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 12:46:14 +02:00
pci: sata_sil: Drop DM_PCI checks
We don't need these checks anymore since when PCI is enabled, driver model is always used. Drop them. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ebacc78e3e
commit
6b4a2a5c86
@ -27,11 +27,7 @@
|
||||
|
||||
#include "sata_sil.h"
|
||||
|
||||
#ifdef CONFIG_DM_PCI
|
||||
#define virt_to_bus(devno, v) dm_pci_virt_to_mem(devno, (void *) (v))
|
||||
#else
|
||||
#define virt_to_bus(devno, v) pci_virt_to_mem(devno, (void *) (v))
|
||||
#endif
|
||||
|
||||
/* just compatible ahci_ops */
|
||||
struct sil_ops {
|
||||
@ -616,11 +612,7 @@ static int sil_init_sata(struct udevice *uc_dev, int dev)
|
||||
#else
|
||||
priv->sil_sata_desc[dev] = sata;
|
||||
priv->port_num = dev;
|
||||
#ifdef CONFIG_DM_PCI
|
||||
sata->devno = uc_dev->parent;
|
||||
#else
|
||||
sata->devno = sata_info.devno;
|
||||
#endif /* CONFIG_DM_PCI */
|
||||
#endif
|
||||
sata->id = dev;
|
||||
sata->port = port;
|
||||
|
||||
@ -21,11 +21,7 @@ struct sil_sata {
|
||||
u16 pio;
|
||||
u16 mwdma;
|
||||
u16 udma;
|
||||
#ifdef CONFIG_DM_PCI
|
||||
struct udevice *devno;
|
||||
#else
|
||||
pci_dev_t devno;
|
||||
#endif
|
||||
int wcache;
|
||||
int flush;
|
||||
int flush_ext;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user