summaryrefslogtreecommitdiffstats
path: root/src/soc/ucb/riscv/chip.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-05-26 09:31:41 +0300
committerPatrick Georgi <pgeorgi@google.com>2020-05-28 09:30:35 +0000
commitde27499b520fb8bf5ec63da8dd582e7b1ef023c3 (patch)
tree8ebf7cee33ad94a192951faef4672c7bffe689dc /src/soc/ucb/riscv/chip.c
parent333ba2aadd9f2f619d0961ed270f9c83e6e048d6 (diff)
downloadcoreboot-de27499b520fb8bf5ec63da8dd582e7b1ef023c3.tar.gz
coreboot-de27499b520fb8bf5ec63da8dd582e7b1ef023c3.tar.bz2
coreboot-de27499b520fb8bf5ec63da8dd582e7b1ef023c3.zip
soc/ucb/riscv: Add chip_operations stub
Change-Id: Ie4f70429c516fff613d372fec7c1c955645f1c6d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41715 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Philipp Hug <philipp@hug.cx>
Diffstat (limited to 'src/soc/ucb/riscv/chip.c')
-rw-r--r--src/soc/ucb/riscv/chip.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/soc/ucb/riscv/chip.c b/src/soc/ucb/riscv/chip.c
new file mode 100644
index 000000000000..187e96d27445
--- /dev/null
+++ b/src/soc/ucb/riscv/chip.c
@@ -0,0 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <device/device.h>
+
+struct chip_operations soc_ucb_riscv_ops = {
+ CHIP_NAME("UCB RISC-V")
+};