From patchwork Fri Aug 28 18:06:48 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 32389 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 04196B7B8F for ; Sat, 29 Aug 2009 04:12:08 +1000 (EST) Received: from localhost ([127.0.0.1]:43196 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mh5va-0000hg-Eh for incoming@patchwork.ozlabs.org; Fri, 28 Aug 2009 14:11:58 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mh5tL-0008VZ-FL for qemu-devel@nongnu.org; Fri, 28 Aug 2009 14:09:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mh5tG-0008TQ-4b for qemu-devel@nongnu.org; Fri, 28 Aug 2009 14:09:38 -0400 Received: from [199.232.76.173] (port=46615 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mh5tF-0008TM-TZ for qemu-devel@nongnu.org; Fri, 28 Aug 2009 14:09:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27819) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mh5tF-0000Jw-DH for qemu-devel@nongnu.org; Fri, 28 Aug 2009 14:09:33 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n7SI9L7Q021613; Fri, 28 Aug 2009 14:09:21 -0400 Received: from localhost.localdomain (vpn2-8-222.ams2.redhat.com [10.36.8.222]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7SI9HOs003911; Fri, 28 Aug 2009 14:09:20 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Fri, 28 Aug 2009 20:06:48 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH 1/6] audio: Nothing uses UINT16 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Juan Quintela --- hw/fmopl.h | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/hw/fmopl.h b/hw/fmopl.h index a01ff90..12c78cb 100644 --- a/hw/fmopl.h +++ b/hw/fmopl.h @@ -14,7 +14,6 @@ #ifndef OSD_CPU_H #define OSD_CPU_H typedef unsigned char UINT8; /* unsigned 8bit */ -typedef unsigned short UINT16; /* unsigned 16bit */ typedef unsigned int UINT32; /* unsigned 32bit */ typedef signed char INT8; /* signed 8bit */ typedef signed short INT16; /* signed 16bit */