aboutsummaryrefslogtreecommitdiff
path: root/board/atmel/common/board.c
diff options
context:
space:
mode:
authorWenyou Yang <wenyou.yang@microchip.com>2017-09-01 16:26:16 +0800
committerTom Rini <trini@konsulko.com>2017-09-11 16:23:06 -0400
commitd9b23e26f0b663752e915763d6e2da2fd12fe4b2 (patch)
tree5cb19eced1797c3b8499f588ac6166cb09c30552 /board/atmel/common/board.c
parent08318317afb365a35f06df788feeed56825dbe61 (diff)
downloadu-boot-d9b23e26f0b663752e915763d6e2da2fd12fe4b2.zip
u-boot-d9b23e26f0b663752e915763d6e2da2fd12fe4b2.tar.gz
u-boot-d9b23e26f0b663752e915763d6e2da2fd12fe4b2.tar.bz2
board: atmel: Create board/$(VENDOR)/common folder
Create board/$(VENDOR)/common folder to accommodate the common code shared by other atmel boards, now put the code to set ethernet mac address from eeprom, which uses the i2c eeprom driver. Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/atmel/common/board.c')
-rw-r--r--board/atmel/common/board.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/board/atmel/common/board.c b/board/atmel/common/board.c
new file mode 100644
index 0000000..7e326d9
--- /dev/null
+++ b/board/atmel/common/board.c
@@ -0,0 +1,12 @@
+/*
+ * Copyright (C) 2017 Microchip
+ * Wenyou Yang <wenyou.yang@microchip.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <common.h>
+
+void dummy(void)
+{
+}