cmd_spl.h 354 B

123456789101112131415
  1. /* Copyright (C) 2011
  2. * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _NAND_SPL_H_
  7. #define _NAND_SPL_H_
  8. #define SPL_EXPORT (0x00000001)
  9. #define SPL_EXPORT_FDT (0x00000001)
  10. #define SPL_EXPORT_ATAGS (0x00000002)
  11. #define SPL_EXPORT_LAST SPL_EXPORT_ATAGS
  12. #endif /* _NAND_SPL_H_ */