diff options
author | Simon Glass <sjg@chromium.org> | 2020-04-05 17:22:38 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2020-04-30 17:16:12 +0800 |
commit | 43a1230adfbf44fd2a8b77aa73528a1d3e604de6 (patch) | |
tree | d71159fb9270616657ccc3be2ae36a4d4791546d | |
parent | 6864fc8704661878294d1f0f981f47e864ef470f (diff) |
x86: cbfs: Drop unwanted declaration
The intention here is add a forward declaration, not actually declare a
variable. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
-rw-r--r-- | include/cbfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cbfs.h b/include/cbfs.h index f3bc8ca24a..d915f9426d 100644 --- a/include/cbfs.h +++ b/include/cbfs.h @@ -135,7 +135,7 @@ void file_cbfs_get_next(const struct cbfs_cachenode **file); */ const struct cbfs_cachenode *file_cbfs_find(const char *name); -struct cbfs_priv *priv; +struct cbfs_priv; /** * cbfs_find_file() - Find a file in a given CBFS |