diff options
author | Atish Patra <atish.patra@wdc.com> | 2019-06-18 14:54:02 -0700 |
---|---|---|
committer | Anup Patel <anup.patel@wdc.com> | 2019-06-19 09:48:54 +0530 |
commit | 98aaf8317b74414afa78078bc056670f46c45f41 (patch) | |
tree | e26aa71b9e3ea232f246fd10a7cfd3fd94578f7a /lib/sbi/sbi_fifo.c | |
parent | 749b0b093242a4c27f7c4f66121afd7852b2de48 (diff) |
lib: Include helper libc functions directly in libsbi.
libsbi needs some of the custom libc functions. It should be directly
included in libsbi instead of platform specific libraries.
Signed-off-by: Atish Patra <atish.patra@wdc.com>
Acked-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'lib/sbi/sbi_fifo.c')
-rw-r--r-- | lib/sbi/sbi_fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_fifo.c b/lib/sbi/sbi_fifo.c index a92b46c..e823d2a 100644 --- a/lib/sbi/sbi_fifo.c +++ b/lib/sbi/sbi_fifo.c @@ -10,7 +10,7 @@ #include <sbi/riscv_locks.h> #include <sbi/sbi_error.h> #include <sbi/sbi_fifo.h> -#include <plat/string.h> +#include <sbi/string.h> void sbi_fifo_init(struct sbi_fifo *fifo, void *queue_mem, u16 entries, u16 entry_size) |