Commit ac565065 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by David S. Miller

isdn: eicon: fix old-style declarations

Modern C standards expect the '__inline__' keyword to come before the return
type in a declaration, and we get many warnings for this with "make W=1"
because the eicon driver has this in a header file:

eicon/divasmain.c:448:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]
eicon/divasmain.c:453:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]
eicon/divasmain.c:458:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]
eicon/divasmain.c:463:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]
eicon/divasmain.c:468:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]
eicon/divasmain.c:473:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]
eicon/platform.h:274:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]
eicon/platform.h:280:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]

A similar warning gets printed for the diva_os_register_io_port()
declaration, because 'register' is interpreted as a keyword instead
of a variable name:

In file included from eicon/diva_didd.c:21:0:
eicon/platform.h:206:1: error: 'register' is not at beginning of declaration [-Werror=old-style-declaration]
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 60a25d00
...@@ -445,32 +445,32 @@ void divasa_unmap_pci_bar(void __iomem *bar) ...@@ -445,32 +445,32 @@ void divasa_unmap_pci_bar(void __iomem *bar)
/********************************************************* /*********************************************************
** I/O port access ** I/O port access
*********************************************************/ *********************************************************/
byte __inline__ inpp(void __iomem *addr) inline byte inpp(void __iomem *addr)
{ {
return (inb((unsigned long) addr)); return (inb((unsigned long) addr));
} }
word __inline__ inppw(void __iomem *addr) inline word inppw(void __iomem *addr)
{ {
return (inw((unsigned long) addr)); return (inw((unsigned long) addr));
} }
void __inline__ inppw_buffer(void __iomem *addr, void *P, int length) inline void inppw_buffer(void __iomem *addr, void *P, int length)
{ {
insw((unsigned long) addr, (word *) P, length >> 1); insw((unsigned long) addr, (word *) P, length >> 1);
} }
void __inline__ outppw_buffer(void __iomem *addr, void *P, int length) inline void outppw_buffer(void __iomem *addr, void *P, int length)
{ {
outsw((unsigned long) addr, (word *) P, length >> 1); outsw((unsigned long) addr, (word *) P, length >> 1);
} }
void __inline__ outppw(void __iomem *addr, word w) inline void outppw(void __iomem *addr, word w)
{ {
outw(w, (unsigned long) addr); outw(w, (unsigned long) addr);
} }
void __inline__ outpp(void __iomem *addr, word p) inline void outpp(void __iomem *addr, word p)
{ {
outb(p, (unsigned long) addr); outb(p, (unsigned long) addr);
} }
......
...@@ -203,7 +203,7 @@ void PCIread(byte bus, byte func, int offset, void *data, int length, void *pci_ ...@@ -203,7 +203,7 @@ void PCIread(byte bus, byte func, int offset, void *data, int length, void *pci_
/* /*
** I/O Port utilities ** I/O Port utilities
*/ */
int diva_os_register_io_port(void *adapter, int register, unsigned long port, int diva_os_register_io_port(void *adapter, int reg, unsigned long port,
unsigned long length, const char *name, int id); unsigned long length, const char *name, int id);
/* /*
** I/O port access abstraction ** I/O port access abstraction
...@@ -271,13 +271,13 @@ void diva_os_get_time(dword *sec, dword *usec); ...@@ -271,13 +271,13 @@ void diva_os_get_time(dword *sec, dword *usec);
** atomic operation, fake because we use threads ** atomic operation, fake because we use threads
*/ */
typedef int diva_os_atomic_t; typedef int diva_os_atomic_t;
static diva_os_atomic_t __inline__ static inline diva_os_atomic_t
diva_os_atomic_increment(diva_os_atomic_t *pv) diva_os_atomic_increment(diva_os_atomic_t *pv)
{ {
*pv += 1; *pv += 1;
return (*pv); return (*pv);
} }
static diva_os_atomic_t __inline__ static inline diva_os_atomic_t
diva_os_atomic_decrement(diva_os_atomic_t *pv) diva_os_atomic_decrement(diva_os_atomic_t *pv)
{ {
*pv -= 1; *pv -= 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment