blob: e446caefb96ba6990796429246e27db3d8c5f26e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef DRIVERS_GENESYSLOGIC_GL9750_H
#define DRIVERS_GENESYSLOGIC_GL9750_H
/* Definitions for Genesys Logic GL9750 */
#define CFG 0x800
#define CFG_EN 0x1
#define CFG2 0x848
#define CFG2_L0S_SUPPORT (0x1 << 6)
#endif /* DRIVERS_GENESYSLOGIC_GL9750_H */
|