diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-01-11 00:00:02 +0000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-12 20:39:13 +1100 |
commit | 8446196ade39befe68f60cfae49c43b94a1144fc (patch) | |
tree | 5b246a1c926687228a62dabe7202c2284d278592 /arch/powerpc/platforms/pseries/hvcserver.c | |
parent | b07dfab3e329955c218cd1d06efdb133c5c18ecd (diff) | |
download | linux-8446196ade39befe68f60cfae49c43b94a1144fc.tar.gz |
[PATCH] powerpc: pseries namespace cleanup
These symbols are only used in the file that they are defined in,
so they should not be in the global namespace.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries/hvcserver.c')
-rw-r--r-- | arch/powerpc/platforms/pseries/hvcserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/pseries/hvcserver.c b/arch/powerpc/platforms/pseries/hvcserver.c index 4d584172055a..22bfb5c89db9 100644 --- a/arch/powerpc/platforms/pseries/hvcserver.c +++ b/arch/powerpc/platforms/pseries/hvcserver.c @@ -40,7 +40,7 @@ MODULE_VERSION(HVCS_ARCH_VERSION); * functions aren't performance sensitive, so this conversion isn't an * issue. */ -int hvcs_convert(long to_convert) +static int hvcs_convert(long to_convert) { switch (to_convert) { case H_Success: @@ -91,7 +91,7 @@ int hvcs_free_partner_info(struct list_head *head) EXPORT_SYMBOL(hvcs_free_partner_info); /* Helper function for hvcs_get_partner_info */ -int hvcs_next_partner(uint32_t unit_address, +static int hvcs_next_partner(uint32_t unit_address, unsigned long last_p_partition_ID, unsigned long last_p_unit_address, unsigned long *pi_buff) |