Changeset e5bc912 in mainline for uspace/drv/bus/isa/i8237.c


Ignore:
Timestamp:
2013-08-16T15:16:21Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ac8b096
Parents:
537620a8
Message:

Fix printf compile issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/isa/i8237.c

    r537620a8 re5bc912  
    476476        /* Low byte */
    477477        const uint8_t value_low = pio_read_8(dma_channel.size_reg_address);
    478         ddf_msg(LVL_DEBUG2, "Read size low byte: %p:%zx.",
     478        ddf_msg(LVL_DEBUG2, "Read size low byte: %p:%x.",
    479479            dma_channel.size_reg_address, value_low);
    480480       
    481481        /* High byte */
    482482        const uint8_t value_high = pio_read_8(dma_channel.size_reg_address);
    483         ddf_msg(LVL_DEBUG2, "Read size high byte: %p:%zx.",
     483        ddf_msg(LVL_DEBUG2, "Read size high byte: %p:%x.",
    484484            dma_channel.size_reg_address, value_high);
    485485        fibril_mutex_unlock(&guard);
Note: See TracChangeset for help on using the changeset viewer.