From nobody Fri Dec 27 01:36:01 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1504081297394402.08473514568254; Wed, 30 Aug 2017 01:21:37 -0700 (PDT) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 182C221CE748D; Wed, 30 Aug 2017 01:18:47 -0700 (PDT) Received: from mail-wr0-x232.google.com (mail-wr0-x232.google.com [IPv6:2a00:1450:400c:c0c::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id EC5A321CE748D for ; Wed, 30 Aug 2017 01:18:45 -0700 (PDT) Received: by mail-wr0-x232.google.com with SMTP id z91so16347382wrc.1 for ; Wed, 30 Aug 2017 01:21:27 -0700 (PDT) Received: from localhost.localdomain ([105.133.189.215]) by smtp.gmail.com with ESMTPSA id h8sm3051642wma.46.2017.08.30.01.21.23 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 30 Aug 2017 01:21:24 -0700 (PDT) X-Original-To: edk2-devel@lists.01.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=JEqthR6gIBJKSfb/I1iP++2EXRabkcc6JkbwHgIKo0M=; b=HmGu8t9qeyVSDvAPSsYvR1wC1eV3W2agga8zVgvtpILlAx2FMGdnTUnfj35a/+QLVq GWNwCa8wPj5xf4yfle9hRYD4P2WUyHbtPQgAquJAf29gMZla4YMC5yry5qfQHJfB6dkb mIuW1z9Rxrqh8rZUG7/r7fMwvKIBnr2dh1ThY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=JEqthR6gIBJKSfb/I1iP++2EXRabkcc6JkbwHgIKo0M=; b=G89npwKKW6dZkDaBCNDpDBeEuwavcHyYY8Re9KrPZDNR2YlpMee2yOf2q8NHBuK1+A 1KAwtcSMZQHkYr5WeyZp5FD7QP6CbSqAFlHsTZ0MqW0qXH1u5o5cswXi6I6hZQG4cfi+ b1NRhU+cN/dtUKhxiVUK3TZbAy+OkYVescOHBsllFXo4m8uGxkVHr55Br3rYFFJna+oc W/Xv4W4gimcw4eDtYjwX1xHhmE7b0ahFxHWKNvewlL6OaA2ZgWZSDBMCWrwGt1/qwlXM SY/ysz58j18qIWeJFbAuQu6653zxoc6bNk+eq7c43UR7aOUtg+HZrU0KOZQzmxOlFFi0 6Tkw== X-Gm-Message-State: AHYfb5hy4Ta+gT5sfYxLkHRSOthCIyBeFY5DdeM+3x0yMHbFTEY8GTd1 DcwWQKFuGof9fHufyOofUg== X-Received: by 10.223.192.14 with SMTP id z14mr510846wre.292.1504081285661; Wed, 30 Aug 2017 01:21:25 -0700 (PDT) From: Ard Biesheuvel To: edk2-devel@lists.01.org, leif.lindholm@linaro.org Date: Wed, 30 Aug 2017 09:21:07 +0100 Message-Id: <20170830082108.7470-6-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170830082108.7470-1-ard.biesheuvel@linaro.org> References: <20170830082108.7470-1-ard.biesheuvel@linaro.org> Subject: [edk2] [PATCH 5/6] BeagleBoardPkg: switch to generic non-coherent DmaLib X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ard Biesheuvel MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) X-ZohoMail: RDKM_2 RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Replace the reference to the ARM specific ArmDmaLib with a reference to the generic NonCoherentDmaLib. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- BeagleBoardPkg/BeagleBoardPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeagleBoardPkg/BeagleBoardPkg.dsc b/BeagleBoardPkg/BeagleBoard= Pkg.dsc index 84aae84ff52d..30f6fd02e82f 100644 --- a/BeagleBoardPkg/BeagleBoardPkg.dsc +++ b/BeagleBoardPkg/BeagleBoardPkg.dsc @@ -122,7 +122,7 @@ [LibraryClasses.common] GdbSerialLib|Omap35xxPkg/Library/GdbSerialLib/GdbSerialLib.inf ArmDisassemblerLib|ArmPkg/Library/ArmDisassemblerLib/ArmDisassemblerLib.= inf DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.i= nf - DmaLib|ArmPkg/Library/ArmDmaLib/ArmDmaLib.inf + DmaLib|EmbeddedPkg/Library/NonCoherentDmaLib/NonCoherentDmaLib.inf =20 NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf FdtLib|EmbeddedPkg/Library/FdtLib/FdtLib.inf --=20 2.11.0 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel