Revision ad0a6551

b/hw/hpet.c
520 520
            break;
521 521
        case HPET_COUNTER:
522 522
            if (hpet_enabled()) {
523
                printf("qemu: Writing counter while HPET enabled!\n");
523
                DPRINTF("qemu: Writing counter while HPET enabled!\n");
524 524
            }
525 525
            s->hpet_counter =
526 526
                (s->hpet_counter & 0xffffffff00000000ULL) | value;
......
529 529
            break;
530 530
        case HPET_COUNTER + 4:
531 531
            if (hpet_enabled()) {
532
                printf("qemu: Writing counter while HPET enabled!\n");
532
                DPRINTF("qemu: Writing counter while HPET enabled!\n");
533 533
            }
534 534
            s->hpet_counter =
535 535
                (s->hpet_counter & 0xffffffffULL) | (((uint64_t)value) << 32);

Also available in: Unified diff