Files
android_kernel_xiaomi_sm8450/include/linux/mailbox/qmp.h
Chris Lew 63d831d07d mailbox: Add snapshot of MSM QMP driver
This snapshot is taken as of msm-4.19 'commit <dac6e981b55e>
("Merge "icnss: Skip removing WLAN host driver during recovery"")'.

In addition, update header copyright and remove unnecessary module
owner assignment.

Change-Id: Ic1e6ff34ca90a52d6b879ef0b12f5b60e9aec058
Signed-off-by: Chris Lew <clew@codeaurora.org>
2019-08-06 11:40:34 -07:00

22 lines
393 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
*/
#ifndef _QMP_H_
#define _QMP_H_
#include <linux/types.h>
/**
* struct qmp_pkt - Packet structure to be used for TX and RX with QMP
* @size size of data
* @data Buffer holding data of this packet
*/
struct qmp_pkt {
u32 size;
void *data;
};
#endif /* _QMP_H_ */