diff options
author | Adrian Bunk <[email protected]> | 2008-12-02 03:28:15 +0000 |
---|---|---|
committer | Kyle McMartin <[email protected]> | 2009-01-05 18:15:24 +0000 |
commit | 8f47cb87eb603fac557a8408c23701dffad07581 (patch) | |
tree | dfa424ba9e4281f4d9a73eeaa5516b03dc566fe3 /arch/parisc/lib/memcpy.c | |
parent | fe0bdec68b77020281dc814805edfe594ae89e0f (diff) |
parisc: lib/: make code static
Make the following needlessly global code static:
- iomap.c: struct iomap_ops[]
- memcpy.c: pa_memcpy()
Signed-off-by: Adrian Bunk <[email protected]>
Cc: Matthew Wilcox <[email protected]>
Cc: Grant Grundler <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Kyle McMartin <[email protected]>
Diffstat (limited to 'arch/parisc/lib/memcpy.c')
-rw-r--r-- | arch/parisc/lib/memcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/lib/memcpy.c b/arch/parisc/lib/memcpy.c index 2d68431fc22e..bbda909c866e 100644 --- a/arch/parisc/lib/memcpy.c +++ b/arch/parisc/lib/memcpy.c @@ -275,7 +275,7 @@ handle_store_error: /* Returns 0 for success, otherwise, returns number of bytes not transferred. */ -unsigned long pa_memcpy(void *dstp, const void *srcp, unsigned long len) +static unsigned long pa_memcpy(void *dstp, const void *srcp, unsigned long len) { register unsigned long src, dst, t1, t2, t3; register unsigned char *pcs, *pcd; |