From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LURMz-0002Lm-0V for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LURMx-0002KV-FZ for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:39 -0500 Received: from [199.232.76.173] (port=53329 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LURMx-0002KK-7h for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:39 -0500 Received: from savannah.gnu.org ([199.232.41.3]:59458 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LURMw-0006ml-5e for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:38 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1LURMu-0001VB-MO for qemu-devel@nongnu.org; Tue, 03 Feb 2009 19:55:36 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1LURMu-0001V6-7w for qemu-devel@nongnu.org; Tue, 03 Feb 2009 19:55:36 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Tue, 03 Feb 2009 19:55:36 +0000 Subject: [Qemu-devel] [6504] SH4: 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 Revision: 6504 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6504 Author: aurel32 Date: 2009-02-03 19:55:35 +0000 (Tue, 03 Feb 2009) Log Message: ----------- SH4: Fix warning when compiling sh7750_regnames.c 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: Aurelien Jarno Modified Paths: -------------- trunk/hw/sh7750_regnames.c Modified: trunk/hw/sh7750_regnames.c =================================================================== --- trunk/hw/sh7750_regnames.c 2009-02-03 19:55:26 UTC (rev 6503) +++ trunk/hw/sh7750_regnames.c 2009-02-03 19:55:35 UTC (rev 6504) @@ -1,6 +1,7 @@ #include "hw.h" #include "sh.h" #include "sh7750_regs.h" +#include "sh7750_regnames.h" #define REGNAME(r) {r, #r},