Modify spdx tag for all CAF authored files for Kona. Change-Id: I9308c7189412b1e428a7f67ded0dc076b0e38254 Signed-off-by: Rishabh Bhatnagar <rishabhb@codeaurora.org>
22 lines
388 B
C
22 lines
388 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2017, 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_ */
|