blob: 65aae728959657c57be0af7a67e3016385a540b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef DELTALAKE_VPD_H
#define DELTALAKE_VPD_H
/* VPD variable for enabling/disabling FRB2 timer. */
#define FRB2_TIMER "frb2_timer"
/* VPD variable for setting FRB2 timer countdown value. */
#define FRB2_COUNTDOWN "frb2_countdown"
#define VPD_LEN 10
/* Default countdown is 15 minutes. */
#define DEFAULT_COUNTDOWN 9000
#endif
|