env: Move env_fix_drivers() to env.h
authorSimon Glass <sjg@chromium.org>
Thu, 1 Aug 2019 15:46:55 +0000 (09:46 -0600)
committerTom Rini <trini@konsulko.com>
Sun, 11 Aug 2019 20:43:41 +0000 (16:43 -0400)
Move this function over to the new header file.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/env.h
include/environment.h

index 2e9a850284a05c4650908e2a08e6c88de86dcca1..8082f7a0eb2d737882bdf92201a4e990592f49a0 100644 (file)
@@ -182,4 +182,9 @@ int eth_env_get_enetaddr(const char *name, uint8_t *enetaddr);
  */
 int eth_env_set_enetaddr(const char *name, const uint8_t *enetaddr);
 
+/**
+ * env_fix_drivers() - Updates envdriver as per relocation
+ */
+void env_fix_drivers(void);
+
 #endif
index 0de9d3fc600b868e07afce6af52a8881296127e6..7be1ef98ad69980dca83aa7b7de4d7ebb7fd5cbc 100644 (file)
@@ -320,11 +320,6 @@ int env_save(void);
  */
 int env_erase(void);
 
-/**
- * env_fix_drivers() - Updates envdriver as per relocation
- */
-void env_fix_drivers(void);
-
 #endif /* DO_DEPS_ONLY */
 
 #endif /* _ENVIRONMENT_H_ */