Ignore:
File:
1 edited

Legend:

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

    rbe942bc r33dbbd2  
    274274       
    275275        /* Gain control over port's registers. */
    276         if (pio_enable((void *)(uintptr_t) data->io_addr, REG_COUNT,
     276        if (pio_enable((void *) data->io_addr, REG_COUNT,
    277277            (void **) &data->port)) {
    278                 printf(NAME ": error - cannot gain the port %#" PRIx32 " for device "
     278                printf(NAME ": error - cannot gain the port %lx for device "
    279279                    "%s.\n", data->io_addr, dev->name);
    280280                return false;
     
    342342                printf(NAME ": failed to connect to the parent driver of the "
    343343                    "device %s.\n", dev->name);
    344                 ret = dev->parent_phone;
     344                ret = EPARTY;   /* FIXME: use another EC */
    345345                goto failed;
    346346        }
    347347       
    348348        /* Get hw resources. */
    349         ret = get_hw_resources(dev->parent_phone, &hw_resources);
    350         if (ret != EOK) {
     349        if (!get_hw_resources(dev->parent_phone, &hw_resources)) {
    351350                printf(NAME ": failed to get hw resources for the device "
    352351                    "%s.\n", dev->name);
     352                ret = EPARTY;   /* FIXME: use another EC */
    353353                goto failed;
    354354        }
     
    374374                                printf(NAME ": i/o range assigned to the device "
    375375                                    "%s is too small.\n", dev->name);
    376                                 ret = ELIMIT;
     376                                ret = EPARTY;   /* FIXME: use another EC */
    377377                                goto failed;
    378378                        }
     
    390390                printf(NAME ": missing hw resource(s) for the device %s.\n",
    391391                    dev->name);
    392                 ret = ENOENT;
     392                ret = EPARTY;   /* FIXME: use another EC */
    393393                goto failed;
    394394        }
     
    727727{
    728728        printf(NAME ": ns8250_add_device %s (handle = %d)\n",
    729             dev->name, (int) dev->handle);
     729            dev->name, dev->handle);
    730730       
    731731        int res = ns8250_dev_initialize(dev);
     
    887887    ipc_call_t *call)
    888888{
    889         sysarg_t method = IPC_GET_IMETHOD(*call);
     889        ipcarg_t method = IPC_GET_METHOD(*call);
    890890        int ret;
    891891        unsigned int baud_rate, parity, word_length, stop_bits;
Note: See TracChangeset for help on using the changeset viewer.