Commit a5b42db7 authored by Miles Bader's avatar Miles Bader Committed by Linus Torvalds

[PATCH] v850: Add definitions for memcpy_fromio and memcpy_toio

Signed-off-by: default avatarMiles Bader <miles@gnu.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c868caa8
/* /*
* include/asm-v850/io.h -- Misc I/O operations * include/asm-v850/io.h -- Misc I/O operations
* *
* Copyright (C) 2001,02,03 NEC Electronics Corporation * Copyright (C) 2001,02,03,04 NEC Electronics Corporation
* Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03,04 Miles Bader <miles@gnu.org>
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this * Public License. See the file COPYING in the main directory of this
...@@ -116,4 +116,7 @@ outsl (unsigned long port, const void *src, unsigned long count) ...@@ -116,4 +116,7 @@ outsl (unsigned long port, const void *src, unsigned long count)
#define phys_to_virt(addr) ((void *)__phys_to_virt (addr)) #define phys_to_virt(addr) ((void *)__phys_to_virt (addr))
#define virt_to_phys(addr) ((unsigned long)__virt_to_phys (addr)) #define virt_to_phys(addr) ((unsigned long)__virt_to_phys (addr))
#define memcpy_fromio(dst, src, len) memcpy (dst, (void *)src, len)
#define memcpy_toio(dst, src, len) memcpy ((void *)dst, src, len)
#endif /* __V850_IO_H__ */ #endif /* __V850_IO_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment