diff options
author | Simon Glass | 2019-08-01 09:46:41 -0600 |
---|---|---|
committer | Tom Rini | 2019-08-11 16:43:41 -0400 |
commit | f1f0ae6a9ce7f4bd148daac233a70a065623d3dd (patch) | |
tree | fb3943ddae06d279a8493f596aba1dc5cbc39f03 /include/common.h | |
parent | af95f2061aee57ce76e1d62a6962724cc5a849a8 (diff) |
env: Move get_env_id() to env.h
Move this function over to the new header file. Also rename it to have an
env_ prefix like the other functions.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h index 6b890470c1c..997da857b2c 100644 --- a/include/common.h +++ b/include/common.h @@ -247,8 +247,6 @@ static inline int env_set_addr(const char *varname, const void *addr) return env_set_hex(varname, (ulong)addr); } -int get_env_id (void); - void pci_init_board(void); /* common/exports.c */ |