summaryrefslogtreecommitdiff
path: root/zephyr/include/ap_power/ap_power_events.h
blob: 8a6a9764de953b6c91a7243c4e1db06a420ef3ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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.
 */

/**
 * @file
 * @brief Internal API for sending AP power related event callbacks.
 */

#ifndef __AP_POWER_AP_EVENTS_H__
#define __AP_POWER_AP_EVENTS_H__

/**
 * @brief Dispatch callbacks for an event.
 *
 * @param event The event to invoke callbacks for.
 */
void ap_power_ev_send_callbacks(enum ap_power_events event);

#endif /* __AP_POWER_AP_EVENTS_H__ */