]> git.ipfire.org Git - thirdparty/qemu.git/blobdiff - hw/i8259.c
find -type f | xargs sed -i 's/[\t ]*$//g' # Yes, again. Note the star in the regex.
[thirdparty/qemu.git] / hw / i8259.c
index 09aabe22350f90abe34bcd5dd9642515905ae3f5..7c94d8d84a265d838f269c2d8048df76327d5799 100644 (file)
@@ -155,7 +155,7 @@ void pic_update_irq(PicState2 *s)
                 printf("pic%d: imr=%x irr=%x padd=%d\n",
                        i, s->pics[i].imr, s->pics[i].irr,
                        s->pics[i].priority_add);
-               
+
             }
         }
         printf("pic: cpu_interrupt\n");
@@ -243,7 +243,7 @@ int pic_read_irq(PicState2 *s)
         intno = s->pics[0].irq_base + irq;
     }
     pic_update_irq(s);
-       
+
 #ifdef DEBUG_IRQ_LATENCY
     printf("IRQ%d latency=%0.3fus\n",
            irq,
@@ -429,7 +429,7 @@ uint32_t pic_intack_read(PicState2 *s)
         ret = pic_poll_read(&s->pics[1], 0x80) + 8;
     /* Prepare for ISR read */
     s->pics[0].read_reg_select = 1;
-   
+
     return ret;
 }
 
@@ -448,7 +448,7 @@ static uint32_t elcr_ioport_read(void *opaque, uint32_t addr1)
 static void pic_save(QEMUFile *f, void *opaque)
 {
     PicState *s = opaque;
-   
+
     qemu_put_8s(f, &s->last_irr);
     qemu_put_8s(f, &s->irr);
     qemu_put_8s(f, &s->imr);
@@ -470,7 +470,7 @@ static void pic_save(QEMUFile *f, void *opaque)
 static int pic_load(QEMUFile *f, void *opaque, int version_id)
 {
     PicState *s = opaque;
-   
+
     if (version_id != 1)
         return -EINVAL;
 
@@ -510,7 +510,7 @@ void pic_info(void)
 {
     int i;
     PicState *s;
-   
+
     if (!isa_pic)
         return;