From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GMg8Z-0003fS-VS for qemu-devel@nongnu.org; Mon, 11 Sep 2006 03:23:23 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GMg8Z-0003f9-DE for qemu-devel@nongnu.org; Mon, 11 Sep 2006 03:23:23 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GMg8Z-0003f6-9c for qemu-devel@nongnu.org; Mon, 11 Sep 2006 03:23:23 -0400 Received: from [213.146.154.40] (helo=pentafluge.infradead.org) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GMg9m-0005PO-QI for qemu-devel@nongnu.org; Mon, 11 Sep 2006 03:24:39 -0400 Received: from pmac.infradead.org ([81.187.2.168]) by pentafluge.infradead.org with esmtpsa (Exim 4.62 #1 (Red Hat Linux)) id 1GMg8X-0007v2-LO for qemu-devel@nongnu.org; Mon, 11 Sep 2006 08:23:21 +0100 From: David Woodhouse Content-Type: text/plain Date: Mon, 11 Sep 2006 08:23:00 +0100 Message-Id: <1157959380.2977.191.camel@pmac.infradead.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] Don't include Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This file is not one of the kernel headers which is exported to userspace by the kernel. It should not exist in /usr/include/linux and certainly shouldn't be included by userspace programs. diff -Naupr qemu-0.8.2.orig/usb-linux.c qemu-0.8.2/usb-linux.c --- qemu-0.8.2.orig/usb-linux.c 2006-07-22 19:23:34.000000000 +0200 +++ qemu-0.8.2/usb-linux.c 2006-08-23 18:47:16.000000000 +0200 @@ -26,7 +26,6 @@ #if defined(__linux__) #include #include -#include #include #include -- dwmw2