Changeset bbc28be in mainline for uspace/drv


Ignore:
Timestamp:
2010-12-03T12:59:13Z (15 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
70c85211
Parents:
2e15ac40 (diff), da55d5b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged branch development into /lelian/hidd

Location:
uspace/drv
Files:
4 edited

Legend:

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

    r2e15ac40 rbbc28be  
    493493        /* Add child devices. */
    494494        add_legacy_children(dev);
    495         printf(NAME ": finished the enumeration of legacy devices\n",
    496             dev->handle);
     495        printf(NAME ": finished the enumeration of legacy devices\n");
    497496
    498497        return EOK;
  • uspace/drv/ns8250/ns8250.c

    r2e15ac40 rbbc28be  
    276276        if (pio_enable((void *) data->io_addr, REG_COUNT,
    277277            (void **) &data->port)) {
    278                 printf(NAME ": error - cannot gain the port %lx for device "
     278                printf(NAME ": error - cannot gain the port %#" PRIx32 " for device "
    279279                    "%s.\n", data->io_addr, dev->name);
    280280                return false;
  • uspace/drv/pciintel/pci.c

    r2e15ac40 rbbc28be  
    323323        if (range_addr != 0) {
    324324                printf(NAME ": device %s : ", dev->name);
    325                 printf("address = %x", range_addr);
     325                printf("address = %" PRIx64, range_addr);
    326326                printf(", size = %x\n", range_size);
    327327        }
     
    479479        }       
    480480       
    481         printf(NAME ": conf_addr = %x.\n",
     481        printf(NAME ": conf_addr = %" PRIx64 ".\n",
    482482            hw_resources.resources[0].res.io_range.address);
    483483       
  • uspace/drv/root/root.c

    r2e15ac40 rbbc28be  
    4545#include <ctype.h>
    4646#include <macros.h>
     47#include <inttypes.h>
    4748
    4849#include <driver.h>
     
    180181static int root_add_device(device_t *dev)
    181182{
    182         printf(NAME ": root_add_device, device handle = %d\n", dev->handle);
     183        printf(NAME ": root_add_device, device handle=%" PRIun "\n",
     184            dev->handle);
    183185       
    184186        /* Register root device's children. */
Note: See TracChangeset for help on using the changeset viewer.