From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pj1-f66.google.com (mail-pj1-f66.google.com [209.85.216.66]) by mx.groups.io with SMTP id smtpd.web11.3323.1595984336035646171 for ; Tue, 28 Jul 2020 17:58:56 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=alo0212/; spf=pass (domain: linaro.org, ip: 209.85.216.66, mailfrom: masahisa.kojima@linaro.org) Received: by mail-pj1-f66.google.com with SMTP id c6so1035299pje.1 for ; Tue, 28 Jul 2020 17:58:55 -0700 (PDT) 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=K1i+DAJI/1ROxAmIFCrjpFdjocLRqYAyDYpG8D9duX0=; b=alo0212/hAQ6Tm87N7rWK99iWaOo68n+IoDBcz69VdlKNESu0M4lUWcbPhO8BzWcIk WM6ARbksANF3sxYOLSQixb4Iv5sWaKOE4fIMoMBM418oPkNXZrM6ZlEJXPyTnz7GBXVq 6ETknVBf7hj+9tDGbz9mncayWtz1d9uTnP39yHd+HEv/b5ig9HV+WtczPn5KGy6mFNAF QPN7TAZ9LzftOLuGb0P5p1e/IoYBTeZ/wov/a3DWZUzdYmG3HB8Ve3GU88C2HC5m1hdE 164dwGBptAQtkdjsVF7/ABE210UnQyX7rusRxeqcH1MSFqEnQdsudGno99UYnV0GDfx5 fAug== 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=K1i+DAJI/1ROxAmIFCrjpFdjocLRqYAyDYpG8D9duX0=; b=FqSGC/Lu4cJta//z8VTm0mnYZa9FzGvoA05iMi3zPjCTPa3ojyBhdvUk+TjVptJnNl G1NPsM407RiXa8OlcrkEzV4nJnV9vZopizliiqWj9vuHfSiaokR7tZVULQoSVPxtv8xu K/WAcLihaM9MJrGLXxv33iY9UCDj5Yn9inqA168GPRUOa7iZRJDFqL6z5FBw/atqxvvA 30byCCAy2XrbYKDwavs7nxuQkQlxhlv8k6nvTlXLnCN7T6Esmocms707eZm22jbi8/Pw KXJ1QjMDztC0aGkcmWIR2+hkZeQSFwv/l/TIlhWaEhI8Fhe9T0VInnAF6JdMK5AMr4bw v23g== X-Gm-Message-State: AOAM532OykLBpMaWlrdyxD27c9e/uwKO0glxMwff+kCGOb3bxiH/P0Y0 JZYxqjE2JZA8p/5La6ctBYGBgKRltd4HoNyP X-Google-Smtp-Source: ABdhPJwDRgKiSzy2xcbrJGNsOmmQJ6nes4TOxmK5O6Xpmq54PdHpdJtOH3bXV1UFZaWuE68EMfE3bA== X-Received: by 2002:a17:90a:d482:: with SMTP id s2mr7057752pju.140.1595984334961; Tue, 28 Jul 2020 17:58:54 -0700 (PDT) Return-Path: Received: from localhost ([121.95.100.191]) by smtp.gmail.com with ESMTPSA id 9sm227749pfy.177.2020.07.28.17.58.53 (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Tue, 28 Jul 2020 17:58:53 -0700 (PDT) From: "Masahisa Kojima" To: devel@edk2.groups.io Cc: leif@nuviainc.com, ard.biesheuvel@arm.com, sami.mujawar@arm.com, tomas.pilar@arm.com, bob.c.feng@intel.com, liming.gao@intel.com, Masahisa Kojima , Pierre Gondois Subject: [PATCH edk2-platforms 1/1] Silicon/Socionext: rename Emmc.c to fix build error Date: Wed, 29 Jul 2020 09:58:20 +0900 Message-Id: <20200729005820.26499-1-masahisa.kojima@linaro.org> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/ has both an Emmc.asl and an Emmc.c file, which the patch(edk2 commit:0a4aa20e8d446 "BaseTools: Compile AML bytecode arrays into .obj file") both generate an Emmc.obj in the same output directory. To fix the build error for Developerbox platform, this patch renames the Emmc.c. Suggested-by: Leif Lindholm Cc: Pierre Gondois Signed-off-by: Masahisa Kojima --- Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/PlatformDxe.inf | 2 +- Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/{Emmc.c => EmmcDxe.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/PlatformDxe.inf b/Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/PlatformDxe.inf index aa3cbdf35c73..74bbd2d48b30 100644 --- a/Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/PlatformDxe.inf +++ b/Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/PlatformDxe.inf @@ -18,7 +18,7 @@ [Defines] [Sources] Emmc.asl - Emmc.c + EmmcDxe.c Optee.asl Pci.c PlatformDxe.c diff --git a/Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/Emmc.c b/Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/EmmcDxe.c similarity index 100% rename from Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/Emmc.c rename to Silicon/Socionext/SynQuacer/Drivers/PlatformDxe/EmmcDxe.c -- 2.17.1