Commit cea9d0b39bf1dca0c81f77dce68274fbc569c906

Authored by malc
1 parent 295abf36

Remove static

Also avoids GCC warning about old style declaration

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4849 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
hw/dma.c
... ... @@ -450,7 +450,7 @@ static int dma_phony_handler (void *opaque, int nchan, int dma_pos, int dma_len)
450 450 static void dma_init2(struct dma_cont *d, int base, int dshift,
451 451 int page_base, int pageh_base)
452 452 {
453   - const static int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 };
  453 + const int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 };
454 454 int i;
455 455  
456 456 d->dshift = dshift;
... ...