u-boot-env.h 397 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef _LINUX_NVMEM_LAYOUTS_U_BOOT_ENV_H
  3. #define _LINUX_NVMEM_LAYOUTS_U_BOOT_ENV_H
  4. enum u_boot_env_format {
  5. U_BOOT_FORMAT_SINGLE,
  6. U_BOOT_FORMAT_REDUNDANT,
  7. U_BOOT_FORMAT_BROADCOM,
  8. };
  9. int u_boot_env_parse(struct device *dev, struct nvmem_device *nvmem,
  10. enum u_boot_env_format format);
  11. #endif /* ifndef _LINUX_NVMEM_LAYOUTS_U_BOOT_ENV_H */