|
From: Paul M. <le...@us...> - 2006-08-01 10:12:10
|
Update of /cvsroot/linuxsh/linux/include/asm-sh In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15566/include/asm-sh Modified Files: sci.h Log Message: Fixup sh-sci compile breakage, spotted by Manuel. Index: sci.h =================================================================== RCS file: /cvsroot/linuxsh/linux/include/asm-sh/sci.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- sci.h 1 Aug 2006 02:13:08 -0000 1.1 +++ sci.h 1 Aug 2006 10:12:06 -0000 1.2 @@ -22,11 +22,13 @@ * Platform device specific platform_data struct */ struct plat_sci_port { - void __iomem *membase; /* io cookie */ - unsigned long mapbase; /* resource base */ - unsigned int irqs[4]; /* ERI, RXI, TXI, BRI */ - unsigned int type; /* SCI / SCIF / IRDA */ - upf_t flags; /* UPF_* flags */ + void __iomem *membase; /* io cookie */ + unsigned long mapbase; /* resource base */ + unsigned int irqs[SCIx_NR_IRQS]; /* ERI, RXI, TXI, BRI */ + unsigned int type; /* SCI / SCIF / IRDA */ + upf_t flags; /* UPF_* flags */ }; +int early_sci_setup(struct uart_port *port); + #endif /* __ASM_SH_SCI_H */ |