Changeset 0adddea in mainline for uspace/lib/c/generic/device/hw_res.c


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

Some cstyle cleanup.

File:
1 edited

Legend:

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

    r54de5ebd r0adddea  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
    28  
     28
    2929 /** @addtogroup libc
    3030 * @{
     
    3232/** @file
    3333 */
    34  
     34
    3535#include <device/hw_res.h>
    3636#include <errno.h>
     
    4444        int rc = async_req_1_1(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE),
    4545            GET_RESOURCE_LIST, &count);
     46
    4647        hw_resources->count = count;
    4748        if (rc != EOK)
     
    6768        int rc = async_req_1_0(dev_phone, DEV_IFACE_ID(HW_RES_DEV_IFACE),
    6869            ENABLE_INTERRUPT);
     70
    6971        return rc == EOK;
    7072}
    71  
    72  
    73  
    74  /** @}
     73
     74/** @}
    7575 */
Note: See TracChangeset for help on using the changeset viewer.