From mboxrd@z Thu Jan 1 00:00:00 1970 From: Baruch Siach Date: Sun, 24 Mar 2019 13:27:44 +0200 Subject: [U-Boot] [PATCH 2/2] ata: ahci_mvebu: add support for Armada 38x In-Reply-To: <96e5fbf2108c278ac219700905bd7cfbef4ab25a.1553426864.git.baruch@tkos.co.il> References: <96e5fbf2108c278ac219700905bd7cfbef4ab25a.1553426864.git.baruch@tkos.co.il> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de With board_ahci_enable() implementation for Armada 38x in place we can now enable 38x support in the ahci_mvebu driver. Signed-off-by: Baruch Siach --- drivers/ata/ahci_mvebu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/ata/ahci_mvebu.c b/drivers/ata/ahci_mvebu.c index 6e3f17ee276d..48a9d00d1479 100644 --- a/drivers/ata/ahci_mvebu.c +++ b/drivers/ata/ahci_mvebu.c @@ -44,6 +44,7 @@ static int mvebu_ahci_probe(struct udevice *dev) } static const struct udevice_id mvebu_ahci_ids[] = { + { .compatible = "marvell,armada-380-ahci" }, { .compatible = "marvell,armada-3700-ahci" }, { .compatible = "marvell,armada-8k-ahci" }, { } -- 2.20.1