From: pbrook Date: Thu, 2 Mar 2006 23:58:13 +0000 (+0000) Subject: Add missing return statement. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e10c2bfb73d7f9e9f7bf29a77e30b8260c1506bc;p=qemu.git Add missing return statement. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1768 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/pl110.c b/hw/pl110.c index 5a6638cbe5..2506dfd39e 100644 --- a/hw/pl110.c +++ b/hw/pl110.c @@ -321,6 +321,7 @@ static void pl110_write(void *opaque, target_phys_addr_t offset, n = (offset - 0x200) >> 2; s->raw_pallette[(offset - 0x200) >> 2] = val; pl110_update_pallette(s, n); + return; } switch (offset >> 2) { case 0: /* LCDTiming0 */