mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
17 lines
339 B
C
17 lines
339 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright IBM Corp. 2024
|
||
|
*
|
||
|
* Author(s):
|
||
|
* Niklas Schnelle <schnelle@linux.ibm.com>
|
||
|
*
|
||
|
*/
|
||
|
#ifndef __S390_PCI_REPORT_H
|
||
|
#define __S390_PCI_REPORT_H
|
||
|
|
||
|
struct zpci_dev;
|
||
|
|
||
|
int zpci_report_status(struct zpci_dev *zdev, const char *operation, const char *status);
|
||
|
|
||
|
#endif /* __S390_PCI_REPORT_H */
|