Mark Kettenis | 72d7301 | 2022-01-22 20:38:14 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | ||||
3 | * (C) Copyright 2021 Mark Kettenis <kettenis@openbsd.org> | ||||
4 | */ | ||||
5 | |||||
6 | #define APPLE_RTKIT_PWR_STATE_SLEEP 0x01 | ||||
7 | #define APPLE_RTKIT_PWR_STATE_QUIESCED 0x10 | ||||
8 | #define APPLE_RTKIT_PWR_STATE_ON 0x20 | ||||
9 | |||||
10 | int apple_rtkit_init(struct mbox_chan *); | ||||
11 | int apple_rtkit_shutdown(struct mbox_chan *, int); |