From: Julian Calaby <julian.calaby@gmail.com>
To: sparclinux@vger.kernel.org
Subject: [PATCH v2 4/5] sparc: Kill exports of prom internal functions
Date: Thu, 08 Jan 2009 12:30:48 +0000 [thread overview]
Message-ID: <4965F1F8.20900@gmail.com> (raw)
sparc: Kill exports of prom internal functions
__prom_getchild() and __prom_getsibling() are not used anywhere, so
don't export them.
Signed-off-by: Julian Calaby <julian.calaby@gmail.com>
---
arch/sparc/include/asm/oplib_32.h | 11 -----------
arch/sparc/include/asm/oplib_64.h | 10 ----------
arch/sparc/prom/tree_32.c | 2 --
arch/sparc/prom/tree_64.c | 2 --
4 files changed, 0 insertions(+), 25 deletions(-)
diff --git a/arch/sparc/include/asm/oplib_32.h b/arch/sparc/include/asm/oplib_32.h
index 73d4552..33e31ce 100644
--- a/arch/sparc/include/asm/oplib_32.h
+++ b/arch/sparc/include/asm/oplib_32.h
@@ -177,17 +177,6 @@ extern void prom_putsegment(int context, unsigned long virt_addr,
/* PROM device tree traversal functions... */
-#ifdef PROMLIB_INTERNAL
-
-/* Internal version of prom_getchild. */
-extern int __prom_getchild(int parent_node);
-
-/* Internal version of prom_getsibling. */
-extern int __prom_getsibling(int node);
-
-#endif
-
-
/* Get the child node of the given node, or zero if no child exists. */
extern int prom_getchild(int parent_node);
diff --git a/arch/sparc/include/asm/oplib_64.h b/arch/sparc/include/asm/oplib_64.h
index 6d2c2ca..a5db031 100644
--- a/arch/sparc/include/asm/oplib_64.h
+++ b/arch/sparc/include/asm/oplib_64.h
@@ -218,16 +218,6 @@ extern void prom_unmap(unsigned long size, unsigned long vaddr);
/* PROM device tree traversal functions... */
-#ifdef PROMLIB_INTERNAL
-
-/* Internal version of prom_getchild. */
-extern int __prom_getchild(int parent_node);
-
-/* Internal version of prom_getsibling. */
-extern int __prom_getsibling(int node);
-
-#endif
-
/* Get the child node of the given node, or zero if no child exists. */
extern int prom_getchild(int parent_node);
diff --git a/arch/sparc/prom/tree_32.c b/arch/sparc/prom/tree_32.c
index 9d9965c..431e04c 100644
--- a/arch/sparc/prom/tree_32.c
+++ b/arch/sparc/prom/tree_32.c
@@ -34,7 +34,6 @@ int __prom_getchild(int node)
return cnode;
}
-EXPORT_SYMBOL(__prom_getchild);
/* Return the child of node 'node' or zero if no this node has no
* direct descendent.
@@ -67,7 +66,6 @@ int __prom_getsibling(int node)
return cnode;
}
-EXPORT_SYMBOL(__prom_getsibling);
/* Return the next sibling of node 'node' or zero if no more siblings
* at this level of depth in the tree.
diff --git a/arch/sparc/prom/tree_64.c b/arch/sparc/prom/tree_64.c
index 175c709..8ea73dd 100644
--- a/arch/sparc/prom/tree_64.c
+++ b/arch/sparc/prom/tree_64.c
@@ -23,7 +23,6 @@ inline int __prom_getchild(int node)
{
return p1275_cmd ("child", P1275_INOUT(1, 1), node);
}
-EXPORT_SYMBOL(__prom_getchild);
inline int prom_getchild(int node)
{
@@ -53,7 +52,6 @@ inline int __prom_getsibling(int node)
{
return p1275_cmd(prom_peer_name, P1275_INOUT(1, 1), node);
}
-EXPORT_SYMBOL(__prom_getsibling);
inline int prom_getsibling(int node)
{
next reply other threads:[~2009-01-08 12:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-08 12:30 Julian Calaby [this message]
2009-01-09 0:59 ` [PATCH v2 4/5] sparc: Kill exports of prom internal functions David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4965F1F8.20900@gmail.com \
--to=julian.calaby@gmail.com \
--cc=sparclinux@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.