mmzone.h 427 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Written by Kanoj Sarcar ([email protected]) Aug 99
  4. * Rewritten for Linux 2.6 by Christoph Hellwig ([email protected]) Jan 2004
  5. */
  6. #ifndef _ASM_MMZONE_H_
  7. #define _ASM_MMZONE_H_
  8. #include <asm/page.h>
  9. #ifdef CONFIG_NUMA
  10. # include <mmzone.h>
  11. #endif
  12. #ifndef pa_to_nid
  13. #define pa_to_nid(addr) 0
  14. #endif
  15. #ifndef nid_to_addrbase
  16. #define nid_to_addrbase(nid) 0
  17. #endif
  18. #endif /* _ASM_MMZONE_H_ */