public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] ArmPkg: fix StandaloneMmMmuLib subdirectory case
@ 2018-11-27 12:26 Leif Lindholm
  2018-11-27 12:27 ` Ard Biesheuvel
  0 siblings, 1 reply; 3+ messages in thread
From: Leif Lindholm @ 2018-11-27 12:26 UTC (permalink / raw)
  To: edk2-devel

While this isn't the only Aarch64 directory in the tree, let's
keep from adding more of them.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf             | 2 +-
 .../StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c     | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename ArmPkg/Library/StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c (100%)

diff --git a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
index d589b23603..7219b59e6f 100644
--- a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
+++ b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
@@ -22,7 +22,7 @@ [Defines]
   PI_SPECIFICATION_VERSION       = 0x00010032
 
 [Sources.AARCH64]
-  Aarch64/ArmMmuStandaloneMmLib.c
+  AArch64/ArmMmuStandaloneMmLib.c
 
 [Packages]
   ArmPkg/ArmPkg.dec
diff --git a/ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c b/ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c
similarity index 100%
rename from ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c
rename to ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ArmPkg: fix StandaloneMmMmuLib subdirectory case
  2018-11-27 12:26 [PATCH] ArmPkg: fix StandaloneMmMmuLib subdirectory case Leif Lindholm
@ 2018-11-27 12:27 ` Ard Biesheuvel
  2018-11-27 13:26   ` Leif Lindholm
  0 siblings, 1 reply; 3+ messages in thread
From: Ard Biesheuvel @ 2018-11-27 12:27 UTC (permalink / raw)
  To: Leif Lindholm; +Cc: edk2-devel@lists.01.org

On Tue, 27 Nov 2018 at 13:26, Leif Lindholm <leif.lindholm@linaro.org> wrote:
>
> While this isn't the only Aarch64 directory in the tree, let's
> keep from adding more of them.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>

Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

> ---
>  ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf             | 2 +-
>  .../StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c     | 0
>  2 files changed, 1 insertion(+), 1 deletion(-)
>  rename ArmPkg/Library/StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c (100%)
>
> diff --git a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
> index d589b23603..7219b59e6f 100644
> --- a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
> +++ b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
> @@ -22,7 +22,7 @@ [Defines]
>    PI_SPECIFICATION_VERSION       = 0x00010032
>
>  [Sources.AARCH64]
> -  Aarch64/ArmMmuStandaloneMmLib.c
> +  AArch64/ArmMmuStandaloneMmLib.c
>
>  [Packages]
>    ArmPkg/ArmPkg.dec
> diff --git a/ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c b/ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c
> similarity index 100%
> rename from ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c
> rename to ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c
> --
> 2.11.0
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ArmPkg: fix StandaloneMmMmuLib subdirectory case
  2018-11-27 12:27 ` Ard Biesheuvel
@ 2018-11-27 13:26   ` Leif Lindholm
  0 siblings, 0 replies; 3+ messages in thread
From: Leif Lindholm @ 2018-11-27 13:26 UTC (permalink / raw)
  To: Ard Biesheuvel; +Cc: edk2-devel@lists.01.org

On Tue, Nov 27, 2018 at 01:27:16PM +0100, Ard Biesheuvel wrote:
> On Tue, 27 Nov 2018 at 13:26, Leif Lindholm <leif.lindholm@linaro.org> wrote:
> >
> > While this isn't the only Aarch64 directory in the tree, let's
> > keep from adding more of them.
> >
> > Contributed-under: TianoCore Contribution Agreement 1.1
> > Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> 
> Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

Thanks - pushed as 18a700945f.

> > ---
> >  ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf             | 2 +-
> >  .../StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c     | 0
> >  2 files changed, 1 insertion(+), 1 deletion(-)
> >  rename ArmPkg/Library/StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c (100%)
> >
> > diff --git a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
> > index d589b23603..7219b59e6f 100644
> > --- a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
> > +++ b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf
> > @@ -22,7 +22,7 @@ [Defines]
> >    PI_SPECIFICATION_VERSION       = 0x00010032
> >
> >  [Sources.AARCH64]
> > -  Aarch64/ArmMmuStandaloneMmLib.c
> > +  AArch64/ArmMmuStandaloneMmLib.c
> >
> >  [Packages]
> >    ArmPkg/ArmPkg.dec
> > diff --git a/ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c b/ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c
> > similarity index 100%
> > rename from ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c
> > rename to ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c
> > --
> > 2.11.0
> >


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-11-27 13:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-27 12:26 [PATCH] ArmPkg: fix StandaloneMmMmuLib subdirectory case Leif Lindholm
2018-11-27 12:27 ` Ard Biesheuvel
2018-11-27 13:26   ` Leif Lindholm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox