From: Paul Durrant Date: Wed, 26 Apr 2017 12:18:55 +0000 (+0100) Subject: Remove unused data structure X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=45d760db62fece6053641cbbd96bbbae89d4c85d;p=people%2Fpauldu%2Fxenbus.git Remove unused data structure XENBUS_CONSOLE_BUFFER is no longer required, so remove the struct declaration and typedef. Signed-off-by: Paul Durrant --- diff --git a/src/xenbus/console.c b/src/xenbus/console.c index 15aea92..b60b800 100644 --- a/src/xenbus/console.c +++ b/src/xenbus/console.c @@ -43,13 +43,6 @@ #include "assert.h" #include "util.h" -typedef struct _XENBUS_CONSOLE_BUFFER { - LIST_ENTRY ListEntry; - ULONG Offset; - ULONG Length; - CHAR Data[1]; // Variable length array -} XENBUS_CONSOLE_BUFFER, *PXENBUS_CONSOLE_BUFFER; - struct _XENBUS_CONSOLE_CONTEXT { PXENBUS_FDO Fdo; KSPIN_LOCK Lock;