aboutsummaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorHector Martin <[email protected]>2023-03-14 19:47:32 +0900
committerHector Martin <[email protected]>2023-11-23 19:10:17 +0900
commit143897c4fa976d02bfafe5ae32b9ffc60dc6145a (patch)
treeb14e36ec11aa281cdaab6460836bb529db9cdbd5 /include/linux
parentbb538effdc71397f2d08bb98df6b326d3b5b2333 (diff)
mailbox: apple: Delete driver
This driver is now orphaned and superseded by drivers/soc/apple/mailbox.c. Acked-by: Eric Curtin <[email protected]> Acked-by: Neal Gompa <[email protected]> Acked-by: Alyssa Rosenzweig <[email protected]> Signed-off-by: Hector Martin <[email protected]>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/apple-mailbox.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/linux/apple-mailbox.h b/include/linux/apple-mailbox.h
deleted file mode 100644
index 720fbb70294a..000000000000
--- a/include/linux/apple-mailbox.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only OR MIT */
-/*
- * Apple mailbox message format
- *
- * Copyright (C) 2021 The Asahi Linux Contributors
- */
-
-#ifndef _LINUX_APPLE_MAILBOX_H_
-#define _LINUX_APPLE_MAILBOX_H_
-
-#include <linux/types.h>
-
-/* encodes a single 96bit message sent over the single channel */
-struct apple_mbox_msg {
- u64 msg0;
- u32 msg1;
-};
-
-#endif