diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-07-05 05:35:33 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-10 08:00:57 -0400 |
commit | 12654f776487952e7c0b9b3864ea1de08b1740f9 (patch) | |
tree | 801d93099820df7d6c6c9e13367ac04ee30890ac /arch | |
parent | bd67fcf9ba8474e8eef649a79aba5b3479b01272 (diff) |
[POWERPC] arch/powerpc/kernel/sysfs.c: Move NUMA exports
With !CONFIG_NUMA, these are static inlines in the header file so
don't generate exports for them in that case.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/sysfs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c index 68991c2d4a1b..55d29ed4b7a0 100644 --- a/arch/powerpc/kernel/sysfs.c +++ b/arch/powerpc/kernel/sysfs.c | |||
@@ -442,12 +442,14 @@ int sysfs_add_device_to_node(struct sys_device *dev, int nid) | |||
442 | return sysfs_create_link(&node->sysdev.kobj, &dev->kobj, | 442 | return sysfs_create_link(&node->sysdev.kobj, &dev->kobj, |
443 | kobject_name(&dev->kobj)); | 443 | kobject_name(&dev->kobj)); |
444 | } | 444 | } |
445 | EXPORT_SYMBOL_GPL(sysfs_add_device_to_node); | ||
445 | 446 | ||
446 | void sysfs_remove_device_from_node(struct sys_device *dev, int nid) | 447 | void sysfs_remove_device_from_node(struct sys_device *dev, int nid) |
447 | { | 448 | { |
448 | struct node *node = &node_devices[nid]; | 449 | struct node *node = &node_devices[nid]; |
449 | sysfs_remove_link(&node->sysdev.kobj, kobject_name(&dev->kobj)); | 450 | sysfs_remove_link(&node->sysdev.kobj, kobject_name(&dev->kobj)); |
450 | } | 451 | } |
452 | EXPORT_SYMBOL_GPL(sysfs_remove_device_from_node); | ||
451 | 453 | ||
452 | #else | 454 | #else |
453 | static void register_nodes(void) | 455 | static void register_nodes(void) |
@@ -457,9 +459,6 @@ static void register_nodes(void) | |||
457 | 459 | ||
458 | #endif | 460 | #endif |
459 | 461 | ||
460 | EXPORT_SYMBOL_GPL(sysfs_add_device_to_node); | ||
461 | EXPORT_SYMBOL_GPL(sysfs_remove_device_from_node); | ||
462 | |||
463 | /* Only valid if CPU is present. */ | 462 | /* Only valid if CPU is present. */ |
464 | static ssize_t show_physical_id(struct sys_device *dev, char *buf) | 463 | static ssize_t show_physical_id(struct sys_device *dev, char *buf) |
465 | { | 464 | { |