blob: 1eeb55d331715b40cf2f59d8f8c857e2a01bece2 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Interface for Dynamic Logical Partitioning of I/O Slots on
4 * RPA-compliant PPC64 platform.
5 *
6 * John Rose <johnrose@austin.ibm.com>
7 * October 2003
8 *
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#endif