From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web12.2256.1613075966419927049 for ; Thu, 11 Feb 2021 12:39:26 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=MQT+AFfj; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [131.107.174.202]) by linux.microsoft.com (Postfix) with ESMTPSA id 0E95D20B6C40; Thu, 11 Feb 2021 12:39:26 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 0E95D20B6C40 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1613075966; bh=XKBWjVinRyDVO8cTv2YptsxZ94Qh5MApyRete0g54Qo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MQT+AFfjtvRPJBVPQATAGpQhzu5rI82DQcX/lGFbxMNjNrHJU3HwRwrM8T4BHrOBK fZ8nY750jK3soJR1WxBPl9+U7UYBmIbAOi/1d/IixA7D2jmdRDZvSmmfKPXf/3gXuW 9xZwiXUw68Us4lcHUoCUAl2gRcAu+vV9HCyHaQq4= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Liming Gao , Eric Dong Subject: [edk2-platforms][PATCH v2 1/3] MinPlatformPkg/SpiFlashCommonLibNull: Make MODULE_TYPE BASE Date: Thu, 11 Feb 2021 12:38:53 -0800 Message-Id: <20210211203855.1656-2-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20210211203855.1656-1-mikuback@linux.microsoft.com> References: <20210211203855.1656-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki This NULL library can be used to link against a MODULE_TYPE other than BASE and that would be useful as it is a NULL class instance. Cc: Chasel Chiu Cc: Nate DeSimone Cc: Liming Gao Cc: Eric Dong Signed-off-by: Michael Kubacki Reviewed-by: Nate DeSimone --- Platform/Intel/MinPlatformPkg/Flash/Library/SpiFlashCommonLibNull/SpiFla= shCommonLibNull.inf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/MinPlatformPkg/Flash/Library/SpiFlashCommonLi= bNull/SpiFlashCommonLibNull.inf b/Platform/Intel/MinPlatformPkg/Flash/Lib= rary/SpiFlashCommonLibNull/SpiFlashCommonLibNull.inf index d4964681de3d..75ef1cb921df 100644 --- a/Platform/Intel/MinPlatformPkg/Flash/Library/SpiFlashCommonLibNull/S= piFlashCommonLibNull.inf +++ b/Platform/Intel/MinPlatformPkg/Flash/Library/SpiFlashCommonLibNull/S= piFlashCommonLibNull.inf @@ -12,8 +12,8 @@ [Defines] BASE_NAME =3D SpiFlashCommonLibNull FILE_GUID =3D F35BBEE7-A681-443E-BB15-07AF9FABBDE= D VERSION_STRING =3D 1.0 - MODULE_TYPE =3D DXE_SMM_DRIVER - LIBRARY_CLASS =3D SpiFlashCommonLib|DXE_SMM_DRIVER + MODULE_TYPE =3D BASE + LIBRARY_CLASS =3D SpiFlashCommonLib # # The following information is for reference only and not required by th= e build tools. # --=20 2.28.0.windows.1