Commit d4f77514 authored by Harvey Harrison's avatar Harvey Harrison Committed by David S. Miller

isdn: replace __inline with inline

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4eb329a5
...@@ -981,13 +981,13 @@ isdn_readbchan_tty(int di, int channel, struct tty_struct *tty, int cisco_hack) ...@@ -981,13 +981,13 @@ isdn_readbchan_tty(int di, int channel, struct tty_struct *tty, int cisco_hack)
} }
static __inline int static inline int
isdn_minor2drv(int minor) isdn_minor2drv(int minor)
{ {
return (dev->drvmap[minor]); return (dev->drvmap[minor]);
} }
static __inline int static inline int
isdn_minor2chan(int minor) isdn_minor2chan(int minor)
{ {
return (dev->chanmap[minor]); return (dev->chanmap[minor]);
......
...@@ -62,7 +62,7 @@ static unsigned char V110_OffMatrix_38400[] = ...@@ -62,7 +62,7 @@ static unsigned char V110_OffMatrix_38400[] =
* and to 67452301 when keylen = 2. This is necessary because ordering on * and to 67452301 when keylen = 2. This is necessary because ordering on
* the isdn line is the other way. * the isdn line is the other way.
*/ */
static __inline unsigned char static inline unsigned char
FlipBits(unsigned char c, int keylen) FlipBits(unsigned char c, int keylen)
{ {
unsigned char b = c; unsigned char b = c;
......
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