nand-core.h 563 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2010 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com/
  5. *
  6. * S3C - Nand Controller core functions
  7. */
  8. #ifndef __ASM_ARCH_NAND_CORE_H
  9. #define __ASM_ARCH_NAND_CORE_H __FILE__
  10. /* These functions are only for use with the core support code, such as
  11. * the cpu specific initialisation code
  12. */
  13. /* re-define device name depending on support. */
  14. static inline void s3c_nand_setname(char *name)
  15. {
  16. #ifdef CONFIG_S3C_DEV_NAND
  17. s3c_device_nand.name = name;
  18. #endif
  19. }
  20. #endif /* __ASM_ARCH_NAND_CORE_H */