diff options
author | Tom Rini | 2023-09-21 19:32:47 -0400 |
---|---|---|
committer | Tom Rini | 2023-10-09 15:24:31 -0400 |
commit | db7516b635692d2d4ab9ce0fefa13a637fb4698e (patch) | |
tree | f779fb02e4db571e1d48f8d73b12d035a717d9c7 /board/radxa | |
parent | 521ca0fa7832ee67ad2a1de37bf05fe8acd00b06 (diff) |
board: Remove essentially empty board files and Makefiles
As part of reviewing a new platform, Daniel Schwierzeck noted that we
can have an empty Makefile in the board directory and don't need an
empty board.c file as well. Further with further cleanup in the
Makefile we can now omit the Makefile entirely. Remove a number of now
unnecessary board.c and Makefiles.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/radxa')
-rw-r--r-- | board/radxa/rock/Makefile | 7 | ||||
-rw-r--r-- | board/radxa/rock/rock.c | 6 | ||||
-rw-r--r-- | board/radxa/rock2/Makefile | 7 | ||||
-rw-r--r-- | board/radxa/rock2/rock2.c | 6 |
4 files changed, 0 insertions, 26 deletions
diff --git a/board/radxa/rock/Makefile b/board/radxa/rock/Makefile deleted file mode 100644 index fe94b60c351..00000000000 --- a/board/radxa/rock/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -# -# (C) Copyright 2015 Heiko Stuebner -# -# SPDX-License-Identifier: GPL-2.0+ -# - -obj-y += rock.o diff --git a/board/radxa/rock/rock.c b/board/radxa/rock/rock.c deleted file mode 100644 index bdc02a6a792..00000000000 --- a/board/radxa/rock/rock.c +++ /dev/null @@ -1,6 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * (C) Copyright 2015 Google, Inc - */ - -#include <common.h> diff --git a/board/radxa/rock2/Makefile b/board/radxa/rock2/Makefile deleted file mode 100644 index caa305bbb57..00000000000 --- a/board/radxa/rock2/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -# -# (C) Copyright 2015 Google, Inc -# -# SPDX-License-Identifier: GPL-2.0+ -# - -obj-y += rock2.o diff --git a/board/radxa/rock2/rock2.c b/board/radxa/rock2/rock2.c deleted file mode 100644 index bdc02a6a792..00000000000 --- a/board/radxa/rock2/rock2.c +++ /dev/null @@ -1,6 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * (C) Copyright 2015 Google, Inc - */ - -#include <common.h> |