From patchwork Wed Apr 3 21:28:30 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Walle X-Patchwork-Id: 1076454 X-Patchwork-Delegate: sr@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=walle.cc Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=walle.cc header.i=@walle.cc header.b="Ha224AIu"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44ZK4G1Lnzz9sSS for ; Thu, 4 Apr 2019 08:30:21 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id BE908C21E36; Wed, 3 Apr 2019 21:29:30 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 00A7AC21E9F; Wed, 3 Apr 2019 21:28:53 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 55B1AC21DFD; Wed, 3 Apr 2019 21:28:48 +0000 (UTC) Received: from ssl.serverraum.org (ssl.serverraum.org [176.9.125.105]) by lists.denx.de (Postfix) with ESMTPS id BA1CAC21C4A for ; Wed, 3 Apr 2019 21:28:47 +0000 (UTC) Received: from apollo.fritz.box (unknown [IPv6:2a02:810c:c200:2e91:6257:18ff:fec4:ca34]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ssl.serverraum.org (Postfix) with ESMTPSA id 4FAC722F2C; Wed, 3 Apr 2019 23:28:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=walle.cc; s=mail2016061301; t=1554326927; bh=QveBN7EdNJGOlTC6esrw6MXavZMj6FqPZoismOKbnWc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ha224AIuw3QUnPoCGUP8bFKwQSovQR8lN6mJGVquG7oBQtMaRWU9LaihKpvuUIxfa DZVTF+lP7J+5s9fyJ+t/pZFs9lrcdLFCyED7vAdtuuHkSWbZennx+CyAuYY29tcH38 nRmel45+Wbh6HXAjoqtRUEmWMGNIsTQmbkOvkQtc= From: Michael Walle To: u-boot@lists.denx.de Date: Wed, 3 Apr 2019 23:28:30 +0200 Message-Id: <20190403212831.29886-4-michael@walle.cc> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190403212831.29886-1-michael@walle.cc> References: <20190403212831.29886-1-michael@walle.cc> X-Virus-Scanned: clamav-milter 0.100.2 at web X-Virus-Status: Clean Cc: Stefan Roese , Chris Packham Subject: [U-Boot] [PATCH 3/4] sata: sata_mv: add orion-sata compatible string X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" The kirkwood devices are compatible with this driver. Signed-off-by: Michael Walle Reviewed-by: Chris Packham Reviewed-by: Stefan Roese --- drivers/ata/sata_mv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index b691107dc0..2a630d46c1 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c @@ -1079,6 +1079,7 @@ static int sata_mv_scan(struct udevice *dev) static const struct udevice_id sata_mv_ids[] = { { .compatible = "marvell,armada-370-sata" }, + { .compatible = "marvell,orion-sata" }, { } };