From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32881) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aiN7o-0004aC-Bz for qemu-devel@nongnu.org; Tue, 22 Mar 2016 10:17:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aiN7i-0006cA-Ph for qemu-devel@nongnu.org; Tue, 22 Mar 2016 10:17:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aiN7i-0006bd-JT for qemu-devel@nongnu.org; Tue, 22 Mar 2016 10:17:30 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 52C90804EF for ; Tue, 22 Mar 2016 14:17:30 +0000 (UTC) From: Paolo Bonzini Date: Tue, 22 Mar 2016 15:16:50 +0100 Message-Id: <1458656229-32043-11-git-send-email-pbonzini@redhat.com> In-Reply-To: <1458656229-32043-1-git-send-email-pbonzini@redhat.com> References: <1458656229-32043-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 10/29] Move ParallelIOArg from qemu-common.h to sysemu/char.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Markus Armbruster From: Markus Armbruster ParallelIOArg is shared between just qemu-char.c and hw/char/parallel.c, and as such has no business in qemu-common.h. Move it to sysemu/char.h. Signed-off-by: Markus Armbruster Signed-off-by: Paolo Bonzini --- include/qemu-common.h | 5 ----- include/sysemu/char.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/qemu-common.h b/include/qemu-common.h index f272752..e7bd1f8 100644 --- a/include/qemu-common.h +++ b/include/qemu-common.h @@ -294,11 +294,6 @@ int qemu_openpty_raw(int *aslave, char *pty_name); sendto(sockfd, buf, len, flags, destaddr, addrlen) #endif -struct ParallelIOArg { - void *buffer; - int count; -}; - typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size); void tcg_exec_init(unsigned long tb_size); diff --git a/include/sysemu/char.h b/include/sysemu/char.h index 4c2f777..307fd8f 100644 --- a/include/sysemu/char.h +++ b/include/sysemu/char.h @@ -41,6 +41,11 @@ typedef struct { #define CHR_IOCTL_PP_EPP_WRITE 11 #define CHR_IOCTL_PP_DATA_DIR 12 +struct ParallelIOArg { + void *buffer; + int count; +}; + #define CHR_IOCTL_SERIAL_SET_TIOCM 13 #define CHR_IOCTL_SERIAL_GET_TIOCM 14 -- 2.5.0