Commit 8f47cb87 authored by Adrian Bunk's avatar Adrian Bunk Committed by Kyle McMartin

parisc: lib/: make code static

Make the following needlessly global code static:

- iomap.c: struct iomap_ops[]
- memcpy.c: pa_memcpy()
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Cc: Matthew Wilcox <matthew@wil.cx>
Cc: Grant Grundler <grundler@parisc-linux.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarKyle McMartin <kyle@mcmartin.ca>
parent fe0bdec6
...@@ -261,7 +261,7 @@ static const struct iomap_ops iomem_ops = { ...@@ -261,7 +261,7 @@ static const struct iomap_ops iomem_ops = {
iomem_write32r, iomem_write32r,
}; };
const struct iomap_ops *iomap_ops[8] = { static const struct iomap_ops *iomap_ops[8] = {
[0] = &ioport_ops, [0] = &ioport_ops,
[7] = &iomem_ops [7] = &iomem_ops
}; };
......
...@@ -275,7 +275,7 @@ static inline unsigned long copy_dstaligned(unsigned long dst, unsigned long src ...@@ -275,7 +275,7 @@ static inline unsigned long copy_dstaligned(unsigned long dst, unsigned long src
/* Returns 0 for success, otherwise, returns number of bytes not transferred. */ /* 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 long src, dst, t1, t2, t3;
register unsigned char *pcs, *pcd; register unsigned char *pcs, *pcd;
......
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