summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/system.h
diff options
context:
space:
mode:
authorEugene Surovegin2005-09-04 00:55:54 +0200
committerLinus Torvalds2005-09-05 09:06:00 +0200
commite8834801bf9e2ee96c3ac29adf0ff6840afcd841 (patch)
tree03b26322908b7f87600763dd110c76f55e541cbe /include/asm-ppc/system.h
parent[PATCH] ppc32: add dcr_base field to ocp_func_mal_data (diff)
downloadkernel-qcow2-linux-e8834801bf9e2ee96c3ac29adf0ff6840afcd841.tar.gz
kernel-qcow2-linux-e8834801bf9e2ee96c3ac29adf0ff6840afcd841.tar.xz
kernel-qcow2-linux-e8834801bf9e2ee96c3ac29adf0ff6840afcd841.zip
[PATCH] ppc32: export cacheable_memcpy()
Add declaration and cacheable_memcpy(). I'll be needing this function in new 4xx EMAC driver I'm going to submit to netdev soon. IMHO, the better place for the declaration would be asm-powerpc/string.h, unfortunately, ppc64 doesn't have this function, so asm-ppc/system.h is the next best place. Signed-off-by: Eugene Surovegin <ebs@ebshome.net> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-ppc/system.h')
-rw-r--r--include/asm-ppc/system.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-ppc/system.h b/include/asm-ppc/system.h
index be6557746ab6..513a334c5810 100644
--- a/include/asm-ppc/system.h
+++ b/include/asm-ppc/system.h
@@ -84,6 +84,7 @@ extern void cvt_fd(float *from, double *to, unsigned long *fpscr);
extern void cvt_df(double *from, float *to, unsigned long *fpscr);
extern int call_rtas(const char *, int, int, unsigned long *, ...);
extern void cacheable_memzero(void *p, unsigned int nb);
+extern void *cacheable_memcpy(void *, const void *, unsigned int);
extern int do_page_fault(struct pt_regs *, unsigned long, unsigned long);
extern void bad_page_fault(struct pt_regs *, unsigned long, int);
extern void die(const char *, struct pt_regs *, long);