blob: 3be57de5303877a2cd5eb40d9e636e610c058448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _PCIE_GENERIC_H_
#define _PCIE_GENERIC_H_
#include <types.h>
struct drivers_pcie_generic_config {
bool is_untrusted;
};
#endif /* _PCIE_GENERIC_H_ */
|