diff options
Diffstat (limited to 'drivers/misc/sgi-xp/xp_main.c')
-rw-r--r-- | drivers/misc/sgi-xp/xp_main.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/misc/sgi-xp/xp_main.c b/drivers/misc/sgi-xp/xp_main.c index 9c0ce2f15ff6..c34b23fe498f 100644 --- a/drivers/misc/sgi-xp/xp_main.c +++ b/drivers/misc/sgi-xp/xp_main.c | |||
@@ -14,7 +14,6 @@ | |||
14 | * | 14 | * |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/module.h> | 17 | #include <linux/module.h> |
19 | #include <linux/device.h> | 18 | #include <linux/device.h> |
20 | #include "xp.h" | 19 | #include "xp.h" |
@@ -36,9 +35,18 @@ struct device *xp = &xp_dbg_subname; | |||
36 | short xp_max_npartitions; | 35 | short xp_max_npartitions; |
37 | EXPORT_SYMBOL_GPL(xp_max_npartitions); | 36 | EXPORT_SYMBOL_GPL(xp_max_npartitions); |
38 | 37 | ||
38 | short xp_partition_id; | ||
39 | EXPORT_SYMBOL_GPL(xp_partition_id); | ||
40 | |||
41 | u8 xp_region_size; | ||
42 | EXPORT_SYMBOL_GPL(xp_region_size); | ||
43 | |||
39 | enum xp_retval (*xp_remote_memcpy) (void *dst, const void *src, size_t len); | 44 | enum xp_retval (*xp_remote_memcpy) (void *dst, const void *src, size_t len); |
40 | EXPORT_SYMBOL_GPL(xp_remote_memcpy); | 45 | EXPORT_SYMBOL_GPL(xp_remote_memcpy); |
41 | 46 | ||
47 | int (*xp_cpu_to_nasid) (int cpuid); | ||
48 | EXPORT_SYMBOL_GPL(xp_cpu_to_nasid); | ||
49 | |||
42 | /* | 50 | /* |
43 | * xpc_registrations[] keeps track of xpc_connect()'s done by the kernel-level | 51 | * xpc_registrations[] keeps track of xpc_connect()'s done by the kernel-level |
44 | * users of XPC. | 52 | * users of XPC. |