diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/pci/hotplug/rpadlpar.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/pci/hotplug/rpadlpar.h')
-rw-r--r-- | drivers/pci/hotplug/rpadlpar.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/pci/hotplug/rpadlpar.h b/drivers/pci/hotplug/rpadlpar.h new file mode 100644 index 000000000000..4a0a59b82eae --- /dev/null +++ b/drivers/pci/hotplug/rpadlpar.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | * Interface for Dynamic Logical Partitioning of I/O Slots on | ||
3 | * RPA-compliant PPC64 platform. | ||
4 | * | ||
5 | * John Rose <johnrose@austin.ibm.com> | ||
6 | * October 2003 | ||
7 | * | ||
8 | * Copyright (C) 2003 IBM. | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or | ||
11 | * modify it under the terms of the GNU General Public License | ||
12 | * as published by the Free Software Foundation; either version | ||
13 | * 2 of the License, or (at your option) any later version. | ||
14 | */ | ||
15 | #ifndef _RPADLPAR_IO_H_ | ||
16 | #define _RPADLPAR_IO_H_ | ||
17 | |||
18 | extern int dlpar_sysfs_init(void); | ||
19 | extern void dlpar_sysfs_exit(void); | ||
20 | |||
21 | extern int dlpar_add_slot(char *drc_name); | ||
22 | extern int dlpar_remove_slot(char *drc_name); | ||
23 | |||
24 | #endif | ||