From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by mx.groups.io with SMTP id smtpd.web10.4801.1578323594736103900 for ; Mon, 06 Jan 2020 07:13:15 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=qzIc4W+k; spf=pass (domain: linaro.org, ip: 209.85.128.66, mailfrom: ard.biesheuvel@linaro.org) Received: by mail-wm1-f66.google.com with SMTP id f129so15624269wmf.2 for ; Mon, 06 Jan 2020 07:13:14 -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:mime-version :content-transfer-encoding; bh=xBO7rxmSESeaDhkE9R967Acjk/uNF4+txfSuNPZ8YbY=; b=qzIc4W+kUw1cTsty3EPwGtR2MrpQ6rHj8rPRGLxQipP5C6nj0q806XcxFPeJfPEl3K hn0CBXmWOT3O074Ro7BYvQqSVXRROh28olxiI8h8OFjM9QuT/1BhBWMuOafI2kvadjc9 BTTUdPWPMLtsfo39o1Pe0/5d2z/SA3UENA4Lioh9mDwPDh1pxiXtzGCK70NqI/nhe52U uYJNN4F2zUrJpnaTK4Fxt9W5EHIfWJCgGHpkin7gKkPZxdKwIjV49vOS7trqmqR8ZBz2 6wyHI60d5lOzlXy89/EO6hdGTCuIgAf9NFjP2yrmZL9AtUZ7KXjCsghci4no0wEhwrRK c7oQ== 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:mime-version :content-transfer-encoding; bh=xBO7rxmSESeaDhkE9R967Acjk/uNF4+txfSuNPZ8YbY=; b=dgMsq2Ai79uyd4pzQueHj7AbUB91ojhNBfYdd90Ryd72gfm0AxJFQnHsx+hLKqsdKB ZazV18aCz3UFtVA1jnPs/kRE65O7UJy/xjXhFpCw4dH2cWhMn8Fkc3uxWgOSGX4+RMrS O7CoMMVaJlP/TKatYwQ9sDS7l6Se+FrLmZOHNjY06UI0wJw6eIQtCYBscO8n02i0ZSt2 eOXZRgLHGGowA+wkF7mRe1XhmPBW0ZWFpEXd0XwPNZwn5aZkM7EdhWe2JzK2TmSAIroI umpFlVdyWQOSU3/1tSLFQ6QOSOXelVztXXYXudw2O38RYe4v5DqR5nSLc+4b6icXAHyk 2qlQ== X-Gm-Message-State: APjAAAXLq0hCaiJXNF0aIH7WUJl/fs4Sxdi8TDitTEK3BVbv5w785lyR 7O+ga4dvGQzQUKPYlkQXgpgIo+cBzfBUgg== X-Google-Smtp-Source: APXvYqxWuxDkvkGdZ8zvFHYv+dgLqLYY7DfkhLIKe8YHrvmkrJltXFd5vRnHA6eZ5WqDtvpCx5BGKQ== X-Received: by 2002:a1c:61d6:: with SMTP id v205mr36827002wmb.91.1578323592991; Mon, 06 Jan 2020 07:13:12 -0800 (PST) Return-Path: Received: from localhost.localdomain ([2a01:cb1d:112:6f00:6051:f896:58f1:b2e4]) by smtp.gmail.com with ESMTPSA id o16sm24484137wmc.18.2020.01.06.07.13.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 06 Jan 2020 07:13:12 -0800 (PST) From: "Ard Biesheuvel" To: devel@edk2.groups.io Cc: maurice.ma@intel.com, guo.dong@intel.com, benjamin.you@intel.com, ray.ni@intel.com, liming.gao@intel.com, hao.a.wu@intel.com, lersek@redhat.com, Ard Biesheuvel Subject: [PATCH 0/5] remove EnterS3WithImmediateWake () from ResetSystemLib Date: Mon, 6 Jan 2020 16:13:05 +0100 Message-Id: <20200106151310.12322-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit After a refactor of the capsule update support, EnterS3WithImmediateWake() was left without any callers in the tree, so remove the declaration and the various definitions. Ard Biesheuvel (5): MdeModulePkg: remove EnterS3WithImmediateWake () from ResetSystemLib PcAtChipsetPkg: remove EnterS3WithImmediateWake () from ResetSystemLib UefiPayloadPkg: remove EnterS3WithImmediateWake () from ResetSystemLib OvmfPkg: remove EnterS3WithImmediateWake () from ResetSystemLib ArmVirtPkg: remove EnterS3WithImmediateWake () from ResetSystemLib MdeModulePkg/Include/Library/ResetSystemLib.h | 11 ----------- ArmVirtPkg/Library/ArmVirtPsciResetSystemLib/ArmVirtPsciResetSystemLib.c | 14 -------------- MdeModulePkg/Library/BaseResetSystemLibNull/BaseResetSystemLibNull.c | 14 -------------- MdeModulePkg/Library/DxeResetSystemLib/DxeResetSystemLib.c | 13 ------------- MdeModulePkg/Library/PeiResetSystemLib/PeiResetSystemLib.c | 13 ------------- MdeModulePkg/Library/RuntimeResetSystemLib/RuntimeResetSystemLib.c | 13 ------------- OvmfPkg/Library/ResetSystemLib/ResetSystemLib.c | 18 ------------------ PcAtChipsetPkg/Library/ResetSystemLib/ResetSystemLib.c | 17 ----------------- UefiPayloadPkg/Library/ResetSystemLib/ResetSystemLib.c | 18 ------------------ 9 files changed, 131 deletions(-) -- 2.20.1