mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[PATCH] include/video/newport.h: "extern inline" -> "static inline"
"extern inline" doesn't make much sense. Signed-off-by: Adrian Bunk <bunk@stusta.de> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
d911233fe6
commit
3f08ff4a4d
1 changed files with 3 additions and 2 deletions
|
@ -382,7 +382,8 @@ typedef struct {
|
|||
#define VC2_IREG_CONTROL 0x10
|
||||
#define VC2_IREG_CONFIG 0x20
|
||||
|
||||
extern __inline__ void newport_vc2_set(struct newport_regs *regs, unsigned char vc2ireg,
|
||||
static inline void newport_vc2_set(struct newport_regs *regs,
|
||||
unsigned char vc2ireg,
|
||||
unsigned short val)
|
||||
{
|
||||
regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | NPORT_DMODE_W3 |
|
||||
|
@ -390,7 +391,7 @@ extern __inline__ void newport_vc2_set(struct newport_regs *regs, unsigned char
|
|||
regs->set.dcbdata0.byword = (vc2ireg << 24) | (val << 8);
|
||||
}
|
||||
|
||||
extern __inline__ unsigned short newport_vc2_get(struct newport_regs *regs,
|
||||
static inline unsigned short newport_vc2_get(struct newport_regs *regs,
|
||||
unsigned char vc2ireg)
|
||||
{
|
||||
regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | NPORT_DMODE_W1 |
|
||||
|
|
Loading…
Reference in a new issue