From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-Id: <20130603221203.316902632@goodmis.org> Date: Mon, 03 Jun 2013 18:11:21 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: "Michael S. Tsirkin" , Rusty Russell , Subject: [65/65] virtio_console: fix uapi header References: <20130603221016.243553628@goodmis.org> Content-Disposition: inline; filename=0065-virtio_console-fix-uapi-header.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: 3.6.11.5 stable review patch. If anyone has any objections, please let me know. ------------------ From: "Michael S. Tsirkin" [ Upstream commit 6407d75afd08545f2252bb39806ffd3f10c7faac ] uapi should use __u32 not u32. Fix a macro in virtio_console.h which uses u32. Signed-off-by: Michael S. Tsirkin Signed-off-by: Rusty Russell Cc: stable@kernel.org Signed-off-by: Steven Rostedt --- include/linux/virtio_console.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/virtio_console.h b/include/linux/virtio_console.h index bdf4b00..82e12ad 100644 --- a/include/linux/virtio_console.h +++ b/include/linux/virtio_console.h @@ -39,7 +39,7 @@ #define VIRTIO_CONSOLE_F_SIZE 0 /* Does host provide console size? */ #define VIRTIO_CONSOLE_F_MULTIPORT 1 /* Does host provide multiple ports? */ -#define VIRTIO_CONSOLE_BAD_ID (~(u32)0) +#define VIRTIO_CONSOLE_BAD_ID (~(__u32)0) struct virtio_console_config { /* colums of the screens */ -- 1.7.10.4