home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-ppc / serial.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  1.2 KB  |  50 lines

  1. /*
  2.  * include/asm-ppc/serial.h
  3.  */
  4.  
  5. #ifdef __KERNEL__
  6. #ifndef __ASM_SERIAL_H__
  7. #define __ASM_SERIAL_H__
  8.  
  9.  
  10. #if defined(CONFIG_EV64260)
  11. #include <platforms/ev64260.h>
  12. #elif defined(CONFIG_CHESTNUT)
  13. #include <platforms/chestnut.h>
  14. #elif defined(CONFIG_GEMINI)
  15. #include <platforms/gemini_serial.h>
  16. #elif defined(CONFIG_POWERPMC250)
  17. #include <platforms/powerpmc250.h>
  18. #elif defined(CONFIG_LOPEC)
  19. #include <platforms/lopec.h>
  20. #elif defined(CONFIG_MVME5100)
  21. #include <platforms/mvme5100.h>
  22. #elif defined(CONFIG_PAL4)
  23. #include <platforms/pal4_serial.h>
  24. #elif defined(CONFIG_PRPMC750)
  25. #include <platforms/prpmc750.h>
  26. #elif defined(CONFIG_PRPMC800)
  27. #include <platforms/prpmc800.h>
  28. #elif defined(CONFIG_SANDPOINT)
  29. #include <platforms/sandpoint.h>
  30. #elif defined(CONFIG_SPRUCE)
  31. #include <platforms/spruce.h>
  32. #elif defined(CONFIG_4xx)
  33. #include <asm/ibm4xx.h>
  34. #elif defined(CONFIG_83xx)
  35. #include <asm/mpc83xx.h>
  36. #elif defined(CONFIG_85xx)
  37. #include <asm/mpc85xx.h>
  38. #elif defined(CONFIG_RADSTONE_PPC7D)
  39. #include <platforms/radstone_ppc7d.h>
  40. #else
  41.  
  42. /*
  43.  * XXX Assume it has PC-style ISA serial ports - true for PReP at least.
  44.  */
  45. #include <asm/pc_serial.h>
  46.  
  47. #endif /* !CONFIG_GEMINI and others */
  48. #endif /* __ASM_SERIAL_H__ */
  49. #endif /* __KERNEL__ */
  50.