Changeset 722912e in mainline for uspace/lib


Ignore:
Timestamp:
2012-06-29T13:04:54Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ea150dc6
Parents:
6843a9c
Message:

Fix mainline merge breakage.

Location:
uspace/lib
Files:
3 edited

Legend:

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

    r6843a9c r722912e  
    4444        assert((res->type == DMA_CHANNEL_8) || (res->type == DMA_CHANNEL_16));
    4545       
    46         const int channel = (res->type == DMA_CHANNEL_8) ?
     46        const unsigned channel = (res->type == DMA_CHANNEL_8) ?
    4747            res->res.dma_channel.dma8 : res->res.dma_channel.dma16;
    4848        const size_t count = out->dma_channels.count;
  • uspace/lib/c/include/device/hw_res_parsed.h

    r6843a9c r722912e  
    100100        /** List of IRQs */
    101101        irq_list_t irqs;
    102 
    103         /** List of DMA channels */
    104         dma_list_t dma_channels;
    105102       
    106103        /** List of DMA channels */
  • uspace/lib/drv/generic/remote_audio_pcm_buffer.c

    r6843a9c r722912e  
    9292            &buffer_size, &buffer_id);
    9393        if (ret == EOK) {
    94                 void *dst = as_get_mappable_page(buffer_size);
    95                 // FIXME Should we create as_area?
    96                 // FIXME Do we need to know the flags?
     94                void *dst = NULL;
    9795                const int ret =
    98                     async_share_in_start_0_0(exch, dst, buffer_size);
     96                    async_share_in_start_0_0(exch, buffer_size, &dst);
    9997                if (ret != EOK) {
    10098                        return ret;
Note: See TracChangeset for help on using the changeset viewer.