Re: [PATCH 5/7] sata_sil: Enable DM_PCI operation

2020-07-07 Thread Tom Rini
On Thu, Jun 11, 2020 at 12:03:19PM +0100, Andre Przywara wrote: > Even though the sata_sil driver was converted over to the driver model, > it still assumed that the PCI controller is using the legacy interface. > > Allow the "devno" member to be a struct udevice pointer and use > DM_PCI_COMPAT t

Re: [PATCH 5/7] sata_sil: Enable DM_PCI operation

2020-06-20 Thread Linus Walleij
On Thu, Jun 11, 2020 at 1:04 PM Andre Przywara wrote: > Even though the sata_sil driver was converted over to the driver model, > it still assumed that the PCI controller is using the legacy interface. > > Allow the "devno" member to be a struct udevice pointer and use > DM_PCI_COMPAT to covert t

[PATCH 5/7] sata_sil: Enable DM_PCI operation

2020-06-11 Thread Andre Przywara
Even though the sata_sil driver was converted over to the driver model, it still assumed that the PCI controller is using the legacy interface. Allow the "devno" member to be a struct udevice pointer and use DM_PCI_COMPAT to covert the rest of the interface. Signed-off-by: Andre Przywara --- dr