From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LTb6O-0003k0-5D for qemu-devel@nongnu.org; Sun, 01 Feb 2009 07:07:04 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LTb6M-0003jQ-J8 for qemu-devel@nongnu.org; Sun, 01 Feb 2009 07:07:03 -0500 Received: from [199.232.76.173] (port=53907 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LTb6M-0003jJ-8l for qemu-devel@nongnu.org; Sun, 01 Feb 2009 07:07:02 -0500 Received: from mtaout02-winn.ispmail.ntl.com ([81.103.221.48]:12284) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LTb6L-00084s-Nq for qemu-devel@nongnu.org; Sun, 01 Feb 2009 07:07:02 -0500 Received: from aamtaout03-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout02-winn.ispmail.ntl.com (InterMail vM.7.08.04.00 201-2186-134-20080326) with ESMTP id <20090201120700.JQHK4080.mtaout02-winn.ispmail.ntl.com@aamtaout03-winn.ispmail.ntl.com> for ; Sun, 1 Feb 2009 12:07:00 +0000 Received: from miranda.arrow ([213.107.21.171]) by aamtaout03-winn.ispmail.ntl.com (InterMail vG.2.02.00.01 201-2161-120-102-20060912) with ESMTP id <20090201120700.VOVU2093.aamtaout03-winn.ispmail.ntl.com@miranda.arrow> for ; Sun, 1 Feb 2009 12:07:00 +0000 Received: from sdb by miranda.arrow with local (Exim 4.63) (envelope-from ) id 1LTb6I-0003XD-0c for qemu-devel@nongnu.org; Sun, 01 Feb 2009 12:06:58 +0000 Date: Sun, 1 Feb 2009 12:06:57 +0000 From: Stuart Brady Message-ID: <20090201120657.GA13565@miranda.arrow> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] Fix warning when compiling sh7750_regnames.c 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 patch fixes a warning when compiling sh7750_regnames.c which is caused by sh7750_regnames.h (which contains the prototype of regname()) not being included. Signed-off-by: Stuart Brady Index: hw/sh7750_regnames.c =================================================================== --- hw/sh7750_regnames.c (revision 6489) +++ hw/sh7750_regnames.c (working copy) @@ -1,6 +1,7 @@ #include "hw.h" #include "sh.h" #include "sh7750_regs.h" +#include "sh7750_regnames.h" #define REGNAME(r) {r, #r}, -- Stuart Brady