Changeset 4c363fa2 in mainline for uspace/srv
- Timestamp:
- 2017-09-21T00:02:23Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5e962ad
- Parents:
- 797dc79e
- Location:
- uspace/srv/hw
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/bus/cuda_adb/cuda_adb.c
r797dc79e r4c363fa2 466 466 467 467 if (size != 3) { 468 printf("unrecognized packet, size=% d\n", size);468 printf("unrecognized packet, size=%zu\n", size); 469 469 for (i = 0; i < size; ++i) { 470 470 printf(" 0x%02x", data[i]); … … 475 475 476 476 if (reg_no != 0) { 477 printf("unrecognized packet, size=% d\n", size);477 printf("unrecognized packet, size=%zu\n", size); 478 478 for (i = 0; i < size; ++i) { 479 479 printf(" 0x%02x", data[i]); -
uspace/srv/hw/irc/icp-ic/icp-ic.c
r797dc79e r4c363fa2 65 65 return EINVAL; 66 66 67 log_msg(LOG_DEFAULT, LVL_NOTE, "Enable IRQ % d", irq);67 log_msg(LOG_DEFAULT, LVL_NOTE, "Enable IRQ %zu", irq); 68 68 69 69 pio_write_32(&icpic_regs->irq_enableset, BIT_V(uint32_t, irq)); -
uspace/srv/hw/irc/obio/obio.c
r797dc79e r4c363fa2 48 48 #include <ddi.h> 49 49 #include <align.h> 50 #include <inttypes.h> 50 51 #include <stdbool.h> 51 52 #include <errno.h> … … 127 128 } 128 129 129 printf("%s: OBIO registers with base at %lx\n", NAME, base_phys);130 printf("%s: OBIO registers with base at 0x%" PRIun "\n", NAME, base_phys); 130 131 131 132 async_set_fallback_port_handler(obio_connection, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.