blob: 78285b9693ab499d6e41b1fb0121556a9f2972db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _PCIE_GENERIC_H_
#define _PCIE_GENERIC_H_
#include <types.h>
struct drivers_pcie_generic_config {
const char *name;
unsigned int wake_gpe;
unsigned int wake_deepest;
};
#endif /* _PCIE_GENERIC_H_ */
|