diff mbox

[U-Boot,1/3] sh: rename some private libraries

Message ID 1423571822-8475-2-git-send-email-yamada.m@jp.panasonic.com
State Accepted
Delegated to: Nobuhiro Iwamatsu
Headers show

Commit Message

Masahiro Yamada Feb. 10, 2015, 12:37 p.m. UTC
Rename two files to the corresponding file names in Linux.
This helps us find missing libraries in the next commit.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---

 arch/sh/lib/Makefile                  | 4 ++--
 arch/sh/lib/{ashiftlt.S => ashlsi3.S} | 0
 arch/sh/lib/{lshiftrt.S => lshrsi3.S} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename arch/sh/lib/{ashiftlt.S => ashlsi3.S} (100%)
 rename arch/sh/lib/{lshiftrt.S => lshrsi3.S} (100%)

Comments

Nobuhiro Iwamatsu Feb. 25, 2015, 4:27 a.m. UTC | #1
Hi,


2015-02-10 21:37 GMT+09:00 Masahiro Yamada <yamada.m@jp.panasonic.com>:
> Rename two files to the corresponding file names in Linux.
> This helps us find missing libraries in the next commit.
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> ---

Applied, thanks.

Best regards,
  Nobuhiro

>
>  arch/sh/lib/Makefile                  | 4 ++--
>  arch/sh/lib/{ashiftlt.S => ashlsi3.S} | 0
>  arch/sh/lib/{lshiftrt.S => lshrsi3.S} | 0
>  3 files changed, 2 insertions(+), 2 deletions(-)
>  rename arch/sh/lib/{ashiftlt.S => ashlsi3.S} (100%)
>  rename arch/sh/lib/{lshiftrt.S => lshrsi3.S} (100%)
>
> diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile
> index 1304f4e..a50f24e 100644
> --- a/arch/sh/lib/Makefile
> +++ b/arch/sh/lib/Makefile
> @@ -15,5 +15,5 @@ obj-y += time.o
>  endif
>  obj-$(CONFIG_CMD_SH_ZIMAGEBOOT) += zimageboot.o
>
> -lib-$(CONFIG_USE_PRIVATE_LIBGCC) += ashiftrt.o ashiftlt.o lshiftrt.o \
> -                                   ashldi3.o ashrsi3.o lshrdi3.o movmem.o
> +lib-$(CONFIG_USE_PRIVATE_LIBGCC) += movmem.o ashldi3.o lshrdi3.o \
> +                                   ashlsi3.o ashrsi3.o ashiftrt.o lshrsi3.o
> diff --git a/arch/sh/lib/ashiftlt.S b/arch/sh/lib/ashlsi3.S
> similarity index 100%
> rename from arch/sh/lib/ashiftlt.S
> rename to arch/sh/lib/ashlsi3.S
> diff --git a/arch/sh/lib/lshiftrt.S b/arch/sh/lib/lshrsi3.S
> similarity index 100%
> rename from arch/sh/lib/lshiftrt.S
> rename to arch/sh/lib/lshrsi3.S
> --
> 1.9.1
>
diff mbox

Patch

diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile
index 1304f4e..a50f24e 100644
--- a/arch/sh/lib/Makefile
+++ b/arch/sh/lib/Makefile
@@ -15,5 +15,5 @@  obj-y	+= time.o
 endif
 obj-$(CONFIG_CMD_SH_ZIMAGEBOOT) += zimageboot.o
 
-lib-$(CONFIG_USE_PRIVATE_LIBGCC) += ashiftrt.o ashiftlt.o lshiftrt.o \
-				    ashldi3.o ashrsi3.o lshrdi3.o movmem.o
+lib-$(CONFIG_USE_PRIVATE_LIBGCC) += movmem.o ashldi3.o lshrdi3.o \
+				    ashlsi3.o ashrsi3.o ashiftrt.o lshrsi3.o
diff --git a/arch/sh/lib/ashiftlt.S b/arch/sh/lib/ashlsi3.S
similarity index 100%
rename from arch/sh/lib/ashiftlt.S
rename to arch/sh/lib/ashlsi3.S
diff --git a/arch/sh/lib/lshiftrt.S b/arch/sh/lib/lshrsi3.S
similarity index 100%
rename from arch/sh/lib/lshiftrt.S
rename to arch/sh/lib/lshrsi3.S