1/*
2 * Copyright (c) 2024 Celina Sophie Kalus <hello@celinakalus.de>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	mbox-consumer {
9		compatible = "vnd,mbox-consumer";
10		mboxes = <&mailbox 11>, <&mailbox 10>;
11		mbox-names = "tx", "rx";
12	};
13};
14
15&mailbox {
16	status = "okay";
17};
18