diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2009-03-31 14:15:27 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-31 14:15:27 -0400 |
commit | 985232e388714d4a9e94b4d96ee69b6ff8c9dc31 (patch) | |
tree | b7e6a73cd2d45fc8bd50a771e2289ce303fe0b45 /drivers/ide | |
parent | 349d12a1fe57d49287a539909cf14f362634342d (diff) |
au1xxx-ide: auide_{in|out}sw() should be static
Make auide_{insw|outsw}() 'static' and mark them 'inline' as there's only one
call site for each: in the driver's {in|out}put_data() methods respectively...
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/au1xxx-ide.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/au1xxx-ide.c b/drivers/ide/au1xxx-ide.c index 549bbb2755a8..1bfb43d0d3a8 100644 --- a/drivers/ide/au1xxx-ide.c +++ b/drivers/ide/au1xxx-ide.c | |||
@@ -50,7 +50,7 @@ static _auide_hwif auide_hwif; | |||
50 | 50 | ||
51 | #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA) | 51 | #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA) |
52 | 52 | ||
53 | void auide_insw(unsigned long port, void *addr, u32 count) | 53 | static inline void auide_insw(unsigned long port, void *addr, u32 count) |
54 | { | 54 | { |
55 | _auide_hwif *ahwif = &auide_hwif; | 55 | _auide_hwif *ahwif = &auide_hwif; |
56 | chan_tab_t *ctp; | 56 | chan_tab_t *ctp; |
@@ -68,7 +68,7 @@ void auide_insw(unsigned long port, void *addr, u32 count) | |||
68 | ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp); | 68 | ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp); |
69 | } | 69 | } |
70 | 70 | ||
71 | void auide_outsw(unsigned long port, void *addr, u32 count) | 71 | static inline void auide_outsw(unsigned long port, void *addr, u32 count) |
72 | { | 72 | { |
73 | _auide_hwif *ahwif = &auide_hwif; | 73 | _auide_hwif *ahwif = &auide_hwif; |
74 | chan_tab_t *ctp; | 74 | chan_tab_t *ctp; |