Commit e10c2bfb73d7f9e9f7bf29a77e30b8260c1506bc

Authored by pbrook
1 parent 023e9351

Add missing return statement.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1768 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 0 deletions
hw/pl110.c
... ... @@ -321,6 +321,7 @@ static void pl110_write(void *opaque, target_phys_addr_t offset,
321 321 n = (offset - 0x200) >> 2;
322 322 s->raw_pallette[(offset - 0x200) >> 2] = val;
323 323 pl110_update_pallette(s, n);
  324 + return;
324 325 }
325 326 switch (offset >> 2) {
326 327 case 0: /* LCDTiming0 */
... ...