X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=QuarkPlatformPkg%2FPlatform%2FDxe%2FSetup%2Fprocessor.c;fp=QuarkPlatformPkg%2FPlatform%2FDxe%2FSetup%2Fprocessor.c;h=0000000000000000000000000000000000000000;hp=e86901f9b6f36e3eab80a95b5ab5a761ca3b4341;hb=5347c48016f27061475fdb053e867a06ce73492f;hpb=96ef5a8e30a8da33eaab09f13cc8d752342717a5 diff --git a/QuarkPlatformPkg/Platform/Dxe/Setup/processor.c b/QuarkPlatformPkg/Platform/Dxe/Setup/processor.c deleted file mode 100644 index e86901f9b6..0000000000 --- a/QuarkPlatformPkg/Platform/Dxe/Setup/processor.c +++ /dev/null @@ -1,40 +0,0 @@ -/** @file -Platform CPU Data - -Copyright (c) 2013-2015 Intel Corporation. - -SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - - -#include "CommonHeader.h" - -#include "SetupPlatform.h" - - -#define NUMBER_OF_PACKAGES 1 - -CHAR16 *SocketNames[NUMBER_OF_PACKAGES]; -CHAR16 *AssetTags[NUMBER_OF_PACKAGES]; - -CHAR16 EmptyString[] = L" "; -CHAR16 SocketString[] = L"LGA775"; - -VOID -ProducePlatformCpuData ( - VOID - ) -{ - UINTN Index; - - for (Index = 0; Index < NUMBER_OF_PACKAGES; Index++) { - - // - // The String Package of a module is registered together with all IFR packages. - // So we just arbitrarily pick a package GUID that is always installed to get the string. - // - AssetTags[Index] = EmptyString; - SocketNames[Index] = SocketString; - } -}