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