static struct stlbrd *stl_allocbrd(void);
static struct stlport *stl_getport(int brdnr, int panelnr, int portnr);
-static inline int stl_initbrds(void);
-static inline int stl_initeio(struct stlbrd *brdp);
-static inline int stl_initech(struct stlbrd *brdp);
-static inline int stl_getbrdnr(void);
-
-#ifdef CONFIG_PCI
-static inline int stl_findpcibrds(void);
-static inline int stl_initpcibrd(int brdtype, struct pci_dev *devp);
-#endif
-
/*
* CD1400 uart specific handling functions.
*/
* Try to find and initialize an EasyIO board.
*/
-static inline int stl_initeio(struct stlbrd *brdp)
+static int stl_initeio(struct stlbrd *brdp)
{
struct stlpanel *panelp;
unsigned int status;
* dealing with all types of ECH board.
*/
-static inline int stl_initech(struct stlbrd *brdp)
+static int stl_initech(struct stlbrd *brdp)
{
struct stlpanel *panelp;
unsigned int status, nxtid, ioaddr, conflict;
* Find the next available board number that is free.
*/
-static inline int stl_getbrdnr(void)
+static int stl_getbrdnr(void)
{
int i;
* configuration space.
*/
-static inline int stl_initpcibrd(int brdtype, struct pci_dev *devp)
+static int stl_initpcibrd(int brdtype, struct pci_dev *devp)
{
struct stlbrd *brdp;
*/
-static inline int stl_findpcibrds(void)
+static int stl_findpcibrds(void)
{
struct pci_dev *dev = NULL;
int i, rc;
* since the initial search and setup is too different.
*/
-static inline int stl_initbrds(void)
+static int stl_initbrds(void)
{
struct stlbrd *brdp;
struct stlconf *confp;
* this is the only way to generate them on the cd1400.
*/
-static inline int stl_cd1400breakisr(struct stlport *portp, int ioaddr)
+static int stl_cd1400breakisr(struct stlport *portp, int ioaddr)
{
if (portp->brklen == 1) {
outb((COR2 + portp->uartaddr), ioaddr);
* automatic flow control modes of the sc26198.
*/
-static inline void stl_sc26198txunflow(struct stlport *portp, struct tty_struct *tty)
+static void stl_sc26198txunflow(struct stlport *portp, struct tty_struct *tty)
{
unsigned char mr0;
* Process an RX bad character.
*/
-static inline void stl_sc26198rxbadch(struct stlport *portp, unsigned char status, char ch)
+static void stl_sc26198rxbadch(struct stlport *portp, unsigned char status, char ch)
{
struct tty_struct *tty;
unsigned int ioaddr;