diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-05-27 00:15:09 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-05-27 02:26:23 -0400 |
commit | 38d0d001b973d8c72c18524cc25ef39db85c66cd (patch) | |
tree | c261b690e3fcdc87bbc4d07b95083d8944503919 /drivers/char/rio/func.h | |
parent | d886cb586f60a5ccf156392f96a39bc52db925d0 (diff) |
[PATCH] rio ->Copy() expects the sourse as first argument
... so conversion from rio_pcicopy() to rio_copy_to_card() had broken the
damn thing.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/char/rio/func.h')
-rw-r--r-- | drivers/char/rio/func.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rio/func.h b/drivers/char/rio/func.h index 0707af33f017..6b039186856d 100644 --- a/drivers/char/rio/func.h +++ b/drivers/char/rio/func.h | |||
@@ -140,7 +140,7 @@ int rio_isr_thread(char *); | |||
140 | struct rio_info *rio_info_store(int cmd, struct rio_info *p); | 140 | struct rio_info *rio_info_store(int cmd, struct rio_info *p); |
141 | #endif | 141 | #endif |
142 | 142 | ||
143 | extern void rio_copy_to_card(void __iomem *to, void *from, int len); | 143 | extern void rio_copy_to_card(void *from, void __iomem *to, int len); |
144 | extern int rio_minor(struct tty_struct *tty); | 144 | extern int rio_minor(struct tty_struct *tty); |
145 | extern int rio_ismodem(struct tty_struct *tty); | 145 | extern int rio_ismodem(struct tty_struct *tty); |
146 | 146 | ||