diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-09-13 00:34:46 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-13 00:34:46 -0400 |
commit | 4291130595065aa3c9fbb9130231f65e4914629a (patch) | |
tree | 988be49185231866ac4e42d6154994b244e6f991 /include/asm-sh64/io.h | |
parent | d3148ce9a65813a8020473739c200cb63036f84c (diff) | |
parent | eff68d452f1a6842fb05218fd93c774ffc4dbc5a (diff) | |
download | kernel-crypto-4291130595065aa3c9fbb9130231f65e4914629a.tar.gz kernel-crypto-4291130595065aa3c9fbb9130231f65e4914629a.tar.xz kernel-crypto-4291130595065aa3c9fbb9130231f65e4914629a.zip |
Merge branch 'upstream-fixes' into upstream
Diffstat (limited to 'include/asm-sh64/io.h')
-rw-r--r-- | include/asm-sh64/io.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-sh64/io.h b/include/asm-sh64/io.h index dee4f77929a..252fedbb662 100644 --- a/include/asm-sh64/io.h +++ b/include/asm-sh64/io.h @@ -123,6 +123,13 @@ void insw(unsigned long port, void *addr, unsigned long count); void outsl(unsigned long port, const void *addr, unsigned long count); void insl(unsigned long port, void *addr, unsigned long count); +#define __raw_readb readb +#define __raw_readw readw +#define __raw_readl readl +#define __raw_writeb writeb +#define __raw_writew writew +#define __raw_writel writel + void memcpy_toio(void __iomem *to, const void *from, long count); void memcpy_fromio(void *to, void __iomem *from, long count); |