Commit be1e2e9c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

greybus: structures added

parent de536e30
......@@ -18,6 +18,21 @@
#include <linux/device.h>
#include "greybus.h"
/*
* AP <-> SVC message structure format:
*
*
*
*/
struct svc_msg {
u8 function;
u8 type;
u8 version_major;
u8 version_minor;
u16 payload_length;
};
struct ap_msg {
u8 *data;
int size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment