mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
736759ef59
Add SPDX GPL-2.0+ to all PCI files that specified the GPL and allowed
either GPL version 2 or any later version.
Remove the boilerplate GPL version 2 or later language, relying on the
assertion in b24413180f
("License cleanup: add SPDX GPL-2.0 license
identifier to files with no license") that the SPDX identifier may be used
instead of the full boilerplate text.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
420 B
C
20 lines
420 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Interface for Dynamic Logical Partitioning of I/O Slots on
|
|
* RPA-compliant PPC64 platform.
|
|
*
|
|
* John Rose <johnrose@austin.ibm.com>
|
|
* October 2003
|
|
*
|
|
* Copyright (C) 2003 IBM.
|
|
*/
|
|
#ifndef _RPADLPAR_IO_H_
|
|
#define _RPADLPAR_IO_H_
|
|
|
|
int dlpar_sysfs_init(void);
|
|
void dlpar_sysfs_exit(void);
|
|
|
|
int dlpar_add_slot(char *drc_name);
|
|
int dlpar_remove_slot(char *drc_name);
|
|
|
|
#endif
|