/* Copyright 2022 The ChromiumOS Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef __X86_COMMON_PWRSEQ_H__ #define __X86_COMMON_PWRSEQ_H__ #include #include #include #include #include /* This encapsulates the attributes of the state machine */ struct pwrseq_context { /* On power-on start boot up sequence */ enum power_states_ndsx power_state; }; #endif /* __X86_COMMON_PWRSEQ_H__ */