diff options
author | Sebastian Reichel | 2020-09-02 19:31:43 +0200 |
---|---|---|
committer | Stefano Babic | 2020-11-01 15:58:47 +0100 |
commit | 36e3e7deb25773cf8ef2533612361490d175967f (patch) | |
tree | 7fc1086d5f56b36c3029641c5ec997c660445495 /board/ge | |
parent | 8ccc6bffaa1865e53486284f8a3190a664870d83 (diff) |
board: ge: common: rename ge_common.c to ge_rtc.c
The file only contains RTC related code, so let's name
it accordingly.
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'board/ge')
-rw-r--r-- | board/ge/bx50v3/bx50v3.c | 2 | ||||
-rw-r--r-- | board/ge/common/Makefile | 2 | ||||
-rw-r--r-- | board/ge/common/ge_rtc.c (renamed from board/ge/common/ge_common.c) | 0 | ||||
-rw-r--r-- | board/ge/common/ge_rtc.h (renamed from board/ge/common/ge_common.h) | 0 | ||||
-rw-r--r-- | board/ge/mx53ppd/mx53ppd.c | 2 |
5 files changed, 3 insertions, 3 deletions
diff --git a/board/ge/bx50v3/bx50v3.c b/board/ge/bx50v3/bx50v3.c index cf76cf7a338..c6b0af8c776 100644 --- a/board/ge/bx50v3/bx50v3.c +++ b/board/ge/bx50v3/bx50v3.c @@ -35,7 +35,7 @@ #include <version.h> #include <stdlib.h> #include <dm/root.h> -#include "../common/ge_common.h" +#include "../common/ge_rtc.h" #include "../common/vpd_reader.h" #include "../../../drivers/net/e1000.h" #include <pci.h> diff --git a/board/ge/common/Makefile b/board/ge/common/Makefile index 8a21dcb8b53..36bedb19807 100644 --- a/board/ge/common/Makefile +++ b/board/ge/common/Makefile @@ -2,4 +2,4 @@ # # Copyright 2017 General Electric Company -obj-y := vpd_reader.o ge_common.o +obj-y := vpd_reader.o ge_rtc.o diff --git a/board/ge/common/ge_common.c b/board/ge/common/ge_rtc.c index 48c3778046f..48c3778046f 100644 --- a/board/ge/common/ge_common.c +++ b/board/ge/common/ge_rtc.c diff --git a/board/ge/common/ge_common.h b/board/ge/common/ge_rtc.h index d33486d0829..d33486d0829 100644 --- a/board/ge/common/ge_common.h +++ b/board/ge/common/ge_rtc.h diff --git a/board/ge/mx53ppd/mx53ppd.c b/board/ge/mx53ppd/mx53ppd.c index 7627e9c370f..2e9d389850a 100644 --- a/board/ge/mx53ppd/mx53ppd.c +++ b/board/ge/mx53ppd/mx53ppd.c @@ -36,7 +36,7 @@ #include <watchdog.h> #include "ppd_gpio.h" #include <stdlib.h> -#include "../../ge/common/ge_common.h" +#include "../../ge/common/ge_rtc.h" #include "../../ge/common/vpd_reader.h" DECLARE_GLOBAL_DATA_PTR; |