From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KFAbU-00055P-FP for qemu-devel@nongnu.org; Sat, 05 Jul 2008 12:27:16 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KFAbT-00054j-7g for qemu-devel@nongnu.org; Sat, 05 Jul 2008 12:27:15 -0400 Received: from [199.232.76.173] (port=53480 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KFAbT-00054g-5T for qemu-devel@nongnu.org; Sat, 05 Jul 2008 12:27:15 -0400 Received: from mx20.gnu.org ([199.232.41.8]:21968) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KFAbS-0007Wa-R9 for qemu-devel@nongnu.org; Sat, 05 Jul 2008 12:27:14 -0400 Received: from savannah.gnu.org ([199.232.41.3] helo=sv.gnu.org) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KF814-0002h8-NK for qemu-devel@nongnu.org; Sat, 05 Jul 2008 09:41:30 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KF80f-0005y9-9w for qemu-devel@nongnu.org; Sat, 05 Jul 2008 13:41:05 +0000 Received: from malc by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KF80f-0005y4-4d for qemu-devel@nongnu.org; Sat, 05 Jul 2008 13:41:05 +0000 MIME-Version: 1.0 Errors-To: malc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: malc Message-Id: Date: Sat, 05 Jul 2008 13:41:05 +0000 Subject: [Qemu-devel] [4849] Remove static 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: 4849 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4849 Author: malc Date: 2008-07-05 13:41:04 +0000 (Sat, 05 Jul 2008) Log Message: ----------- Remove static Also avoids GCC warning about old style declaration Modified Paths: -------------- trunk/hw/dma.c Modified: trunk/hw/dma.c =================================================================== --- trunk/hw/dma.c 2008-07-05 13:41:02 UTC (rev 4848) +++ trunk/hw/dma.c 2008-07-05 13:41:04 UTC (rev 4849) @@ -450,7 +450,7 @@ static void dma_init2(struct dma_cont *d, int base, int dshift, int page_base, int pageh_base) { - const static int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 }; + const int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 }; int i; d->dshift = dshift;