From 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sat, 16 Apr 2005 15:20:36 -0700 Subject: Linux-2.6.12-rc2 Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip! --- include/asm-ppc/serial.h | 57 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 include/asm-ppc/serial.h (limited to 'include/asm-ppc/serial.h') diff --git a/include/asm-ppc/serial.h b/include/asm-ppc/serial.h new file mode 100644 index 000000000000..6d47438be58c --- /dev/null +++ b/include/asm-ppc/serial.h @@ -0,0 +1,57 @@ +/* + * include/asm-ppc/serial.h + */ + +#ifdef __KERNEL__ +#ifndef __ASM_SERIAL_H__ +#define __ASM_SERIAL_H__ + +#include + +#if defined(CONFIG_EV64260) +#include +#elif defined(CONFIG_CHESTNUT) +#include +#elif defined(CONFIG_GEMINI) +#include +#elif defined(CONFIG_POWERPMC250) +#include +#elif defined(CONFIG_LOPEC) +#include +#elif defined(CONFIG_MCPN765) +#include +#elif defined(CONFIG_MVME5100) +#include +#elif defined(CONFIG_PAL4) +#include +#elif defined(CONFIG_PRPMC750) +#include +#elif defined(CONFIG_PRPMC800) +#include +#elif defined(CONFIG_SANDPOINT) +#include +#elif defined(CONFIG_SPRUCE) +#include +#elif defined(CONFIG_4xx) +#include +#elif defined(CONFIG_83xx) +#include +#elif defined(CONFIG_85xx) +#include +#elif defined(CONFIG_RADSTONE_PPC7D) +#include +#else + +/* + * XXX Assume for now it has PC-style ISA serial ports. + * This is true for PReP and CHRP at least. + */ +#include + +#if defined(CONFIG_MAC_SERIAL) +#define SERIAL_DEV_OFFSET ((_machine == _MACH_prep || _machine == _MACH_chrp) ? 0 : 2) +#endif + +#endif /* !CONFIG_GEMINI and others */ +#endif /* __ASM_SERIAL_H__ */ +#endif /* __KERNEL__ */ -- cgit v1.2.3-59-g8ed1b