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::541; helo=mail-ed1-x541.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-ed1-x541.google.com (mail-ed1-x541.google.com [IPv6:2a00:1450:4864:20::541]) (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 051832119377D for ; Wed, 21 Nov 2018 03:58:45 -0800 (PST) Received: by mail-ed1-x541.google.com with SMTP id y56so4633663edd.11 for ; Wed, 21 Nov 2018 03:58:44 -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=rPwfBOqdamYy20wgljlOy5SsBXVoWvejPOb00LUbO6E=; b=kSNOkIyslArxjoQrUx4xmzBprbQSbKe0jZK4DOW2VcDki48UU2LxYG2cidD/BQHwk7 JSHkQInDFcW3Z+MYi1AXif04mlVpnv7bevobO8bdjP0PwYCeWINoBEKxLVN/wssxDIsL 5DlQ9ky7u02mZVOec0uRcP6e4iS27U4rakDCM= 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=rPwfBOqdamYy20wgljlOy5SsBXVoWvejPOb00LUbO6E=; b=m0FKQsKXLziifJb6lmUwz1kJ4+JPnUxSUO+Gl4syD0tSfKlvKuv+zdQuX3rzGfy7XS 0elZcGJiYIbccpXJGRWffwVtgPZBOB3dXUW9xmBjMC4lFF4cldCAoJPHatgijYcgUZHi aE5ZeZsbQEJFV4Jvc3bbV504cIbmmHkeGpLdi3y0p0m/2NYr0w/jtb0ntOiXqQkOLv8M aCS8HhUpuH3hXv1X3tVizmgN62aI8FBl3AF6TLVh8usQeoWqzK8MYFQcVt9Jd6v3QJmj Y+bq7hIJ1fajSt0moXkYbYmflDRy9C431SOxRhb8H6XEpYw3a/Z7wB4qGR9GeoH5ifZl JpyQ== X-Gm-Message-State: AGRZ1gLwNkNpOpIdfl3n58LPOYKfP60OHuxf2yLS35MrnUznoRblWN+g 2OdlnXEMRit65MvrtrsqfFRa4x1cV8nFtg== X-Google-Smtp-Source: AJdET5fsfYQz9m3AveW0Cw6fm6cMcJhrTrV9b5wQZK0AKX/XjsIaNBokj+R7gbqNUu3Rd6nY2TN2wA== X-Received: by 2002:a17:906:1f99:: with SMTP id t25-v6mr4932476ejr.36.1542801523247; Wed, 21 Nov 2018 03:58:43 -0800 (PST) Received: from mba13.wifi.ns.nl (dhcp-077-251-017-237.chello.nl. [77.251.17.237]) by smtp.gmail.com with ESMTPSA id x90sm4090716ede.35.2018.11.21.03.58.42 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 21 Nov 2018 03:58:42 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Cc: leif.lindholm@linaro.org, lersek@redhat.com, philmd@redhat.com, hongbo.zhang@linaro.org, nariman.poushin@linaro.org, thomas.abraham@arm.com, Ard Biesheuvel Date: Wed, 21 Nov 2018 12:58:28 +0100 Message-Id: <20181121115828.3026-6-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181121115828.3026-1-ard.biesheuvel@linaro.org> References: <20181121115828.3026-1-ard.biesheuvel@linaro.org> Subject: [PATCH v2 5/5] ArmPlatformPkg/NorFlashPlatformLib: remove unused Guid member from struct 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, 21 Nov 2018 11:58:45 -0000 We no longer use per-instance GUIDs to identify NOR flash banks so there is no longer a need to define them. Drop the Guid member from the NOR_FLASH_DESCRIPTION type. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- This patch should not be merged before users in edk2-platforms have been updated. ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h | 1 - 1 file changed, 1 deletion(-) diff --git a/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h b/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h index e9e1c060787d..e99a217c3a51 100644 --- a/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h +++ b/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h @@ -20,7 +20,6 @@ typedef struct { UINTN RegionBaseAddress; // Start address of one single region UINTN Size; UINTN BlockSize; - EFI_GUID Guid; } NOR_FLASH_DESCRIPTION; EFI_STATUS -- 2.17.1