cmd_spl.h 354 B

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