Skip to content

Commit

Permalink
isdn: replace __inline with inline
Browse files Browse the repository at this point in the history
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Harvey Harrison authored and David S. Miller committed Mar 6, 2008
1 parent 4eb329a commit d4f7751
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drivers/isdn/i4l/isdn_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
return (dev->drvmap[minor]);
}

static __inline int
static inline int
isdn_minor2chan(int minor)
{
return (dev->chanmap[minor]);
Expand Down
2 changes: 1 addition & 1 deletion drivers/isdn/i4l/isdn_v110.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static unsigned char V110_OffMatrix_38400[] =
* and to 67452301 when keylen = 2. This is necessary because ordering on
* the isdn line is the other way.
*/
static __inline unsigned char
static inline unsigned char
FlipBits(unsigned char c, int keylen)
{
unsigned char b = c;
Expand Down

0 comments on commit d4f7751

Please sign in to comment.