From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:4864:20::32f; helo=mail-wm1-x32f.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm1-x32f.google.com (mail-wm1-x32f.google.com [IPv6:2a00:1450:4864:20::32f]) (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 D61EF211AF9E8 for ; Wed, 16 Jan 2019 12:22:51 -0800 (PST) Received: by mail-wm1-x32f.google.com with SMTP id m1so3457219wml.2 for ; Wed, 16 Jan 2019 12:22:51 -0800 (PST) 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=NO4R12nkrb9A+iGMEceCHH46ajRX+Qlrv3yufHJs4mU=; b=XdxnXFEHwVRXVb0IcfhS4CRPo40Kx8c7Z8tDdP8R2yZbN7V+YzdKU9WFfhSMA8lza6 Cgm8ZRHpCodoe5zbk//K//CXI8kLzIykxTBxNH2e9JtjvtnoIU3kxn4WHHYaXCJuqq8S sBpeFFNmkJeewmw65BA26YqCSn2JKnxJ0Jy0M= 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=NO4R12nkrb9A+iGMEceCHH46ajRX+Qlrv3yufHJs4mU=; b=MN2nOCjpf+dl0PdtkBbVsAdmyLZcwljCOKQR7AaBg1X2X+RzS26IYZtphV8lzP1pn1 /+p0/Q6icSD1+LzS7uhBOqHpUv0dxBNlOdQj+VlfAa3x/kVsrSQabYQBzG+M+fn/TcpK 5uxyPvfAJli7OsDvcuasR9Edtdh3RSFOvfSo272f8PwUNJb/2IWuax5Hvo9WCwWXfBPN lZMEuwQ1dUFD5xS5BKB7/CczjHFuf8G5xhItkIokq8krWCAZH7pnT+rBJMNuJTiX/Ji2 +6IDfd3STM2rwIyvF1ZoESezgm1j4m4yRa63aT4WvCUati1R4LW6qFaJUb/s3lovyuX3 CL6A== X-Gm-Message-State: AJcUukcmDoLmUfqYBp6jHiqvXZiGWc2Xayh7L3RGtfVQezX5wY/MMq1F KlJeGJh0/8Efk9bFtBzTxfsdIbX2neGiDQ== X-Google-Smtp-Source: ALg8bN7vMaRvMXl5i1oZaSdArl60pUUgdP9NZn7u0hPCS7/z2mqnbxhtkqSpnb7i6rZLggL8JQFOoQ== X-Received: by 2002:a1c:ab87:: with SMTP id u129mr8960905wme.104.1547670170045; Wed, 16 Jan 2019 12:22:50 -0800 (PST) Received: from dogfood.home ([2a01:cb1d:112:6f00:28df:207d:542c:1451]) by smtp.gmail.com with ESMTPSA id p139sm70901316wmd.31.2019.01.16.12.22.48 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 16 Jan 2019 12:22:49 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Cc: Ard Biesheuvel , Achin Gupta , Jiewen Yao , Supreeth Venkatesh , Leif Lindholm , Jagadeesh Ujja , Thomas Panakamattam Abraham , Sami Mujawar Date: Wed, 16 Jan 2019 21:22:30 +0100 Message-Id: <20190116202236.6977-6-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190116202236.6977-1-ard.biesheuvel@linaro.org> References: <20190116202236.6977-1-ard.biesheuvel@linaro.org> Subject: [PATCH v2 05/11] StandaloneMmPkg/StandaloneMmCoreEntryPoint: add missing SerialPortLib ref X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2019 20:22:52 -0000 StandaloneMmCoreEntryPoint calls SerialPortInitialize() explicitly, so add SerialPortLib to its list of LibraryClasses. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel Reviewed-by: Supreeth Venkatesh --- StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/StandaloneMmCoreEntryPoint.inf | 1 + 1 file changed, 1 insertion(+) diff --git a/StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/StandaloneMmCoreEntryPoint.inf b/StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/StandaloneMmCoreEntryPoint.inf index 3222cd359f3e..769eaeeefbea 100644 --- a/StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/StandaloneMmCoreEntryPoint.inf +++ b/StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/StandaloneMmCoreEntryPoint.inf @@ -43,6 +43,7 @@ [Packages.AARCH64] [LibraryClasses] BaseLib DebugLib + SerialPortLib [LibraryClasses.AARCH64] StandaloneMmMmuLib -- 2.17.1