brintos

brintos / linux-shallow public Read only

0
0
Text · 420 B · 1eeb55d Raw
21 lines · c
1/* SPDX-License-Identifier: GPL-2.0+ */2/*3 * Interface for Dynamic Logical Partitioning of I/O Slots on4 * RPA-compliant PPC64 platform.5 *6 * John Rose <johnrose@austin.ibm.com>7 * October 20038 *9 * Copyright (C) 2003 IBM.10 */11#ifndef _RPADLPAR_IO_H_12#define _RPADLPAR_IO_H_13 14int dlpar_sysfs_init(void);15void dlpar_sysfs_exit(void);16 17int dlpar_add_slot(char *drc_name);18int dlpar_remove_slot(char *drc_name);19 20#endif21