]> Git Repo - linux.git/blob - include/linux/apple-mailbox.h
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[linux.git] / include / linux / apple-mailbox.h
1 /* SPDX-License-Identifier: GPL-2.0-only OR MIT */
2 /*
3  * Apple mailbox message format
4  *
5  * Copyright (C) 2021 The Asahi Linux Contributors
6  */
7
8 #ifndef _LINUX_APPLE_MAILBOX_H_
9 #define _LINUX_APPLE_MAILBOX_H_
10
11 #include <linux/types.h>
12
13 /* encodes a single 96bit message sent over the single channel */
14 struct apple_mbox_msg {
15         u64 msg0;
16         u32 msg1;
17 };
18
19 #endif
This page took 0.034502 seconds and 4 git commands to generate.