summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/nyan_blaze
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2019-05-23 12:44:00 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-05-29 20:12:57 +0000
commit68999a8b869be132f1c8c242d9a6167896920be3 (patch)
treeaf6da3acef72e859bab91a53cec6cbaed1c5fa8d /src/mainboard/google/nyan_blaze
parent3f4a987beefc8cb66ba3f9fff5405cdad8933fd6 (diff)
downloadcoreboot-68999a8b869be132f1c8c242d9a6167896920be3.tar.gz
coreboot-68999a8b869be132f1c8c242d9a6167896920be3.tar.bz2
coreboot-68999a8b869be132f1c8c242d9a6167896920be3.zip
commonlib: fix typo LB_TAB_* (instead of LB_TAG_*)
Also adapt all users of these symbols Change-Id: Ibf924a283d438de49a93ce661b0d9ca1a81cd6d1 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32956 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/google/nyan_blaze')
-rw-r--r--src/mainboard/google/nyan_blaze/mainboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/nyan_blaze/mainboard.c b/src/mainboard/google/nyan_blaze/mainboard.c
index a296092a192d..97d057627835 100644
--- a/src/mainboard/google/nyan_blaze/mainboard.c
+++ b/src/mainboard/google/nyan_blaze/mainboard.c
@@ -257,7 +257,7 @@ void lb_board(struct lb_header *header)
struct lb_range *dma;
dma = (struct lb_range *)lb_new_record(header);
- dma->tag = LB_TAB_DMA;
+ dma->tag = LB_TAG_DMA;
dma->size = sizeof(*dma);
dma->range_start = (uintptr_t)_dma_coherent;
dma->range_size = REGION_SIZE(dma_coherent);