diff options
author | Stefan Weil | 2011-04-28 17:20:35 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2011-05-08 11:02:17 +0200 |
commit | ff2712ba8938afe204dcbb0b50036b36fe057c42 (patch) | |
tree | a92d58b6848cc19a92171ad152c7f9795fe42b4c /hw/pl061.c | |
parent | Fix typos in comments (existance -> existence) (diff) | |
download | qemu-ff2712ba8938afe204dcbb0b50036b36fe057c42.tar.gz qemu-ff2712ba8938afe204dcbb0b50036b36fe057c42.tar.xz qemu-ff2712ba8938afe204dcbb0b50036b36fe057c42.zip |
Fix typos in comments (interupt -> interrupt)
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'hw/pl061.c')
-rw-r--r-- | hw/pl061.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pl061.c b/hw/pl061.c index 2e181f8c2f..372dfc2da2 100644 --- a/hw/pl061.c +++ b/hw/pl061.c @@ -98,7 +98,7 @@ static uint32_t pl061_read(void *opaque, target_phys_addr_t offset) return s->isense; case 0x408: /* Interrupt both edges */ return s->ibe; - case 0x40c: /* Interupt event */ + case 0x40c: /* Interrupt event */ return s->iev; case 0x410: /* Interrupt mask */ return s->im; @@ -156,7 +156,7 @@ static void pl061_write(void *opaque, target_phys_addr_t offset, case 0x408: /* Interrupt both edges */ s->ibe = value; break; - case 0x40c: /* Interupt event */ + case 0x40c: /* Interrupt event */ s->iev = value; break; case 0x410: /* Interrupt mask */ |