Ignore:
Timestamp:
2011-01-09T12:26:33Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0adddea
Parents:
a676574
Message:

Whitespace cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/device/hw_res.c

    ra676574 r54de5ebd  
    4141{
    4242        sysarg_t count = 0;
    43         int rc = async_req_1_1(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE), GET_RESOURCE_LIST, &count);
     43
     44        int rc = async_req_1_1(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE),
     45            GET_RESOURCE_LIST, &count);
    4446        hw_resources->count = count;
    4547        if (rc != EOK)
     
    5759                return rc;
    5860        }
    59                  
     61       
    6062        return EOK;
    6163}
     
    6365bool enable_interrupt(int dev_phone)
    6466{
    65         int rc = async_req_1_0(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE), ENABLE_INTERRUPT);
     67        int rc = async_req_1_0(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE),
     68            ENABLE_INTERRUPT);
    6669        return rc == EOK;
    6770}
Note: See TracChangeset for help on using the changeset viewer.