Changeset 1bebadee in mainline for uspace/lib/drv


Ignore:
Timestamp:
2012-07-18T11:11:29Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c5cbc1b7
Parents:
1f7da3b (diff), 730dce77 (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:

Merge mainline changes.

Conflict in uspace/lib/drv/generic/dev_iface.c:

Resolved by using c99 method for array initialization for ahci too.

AHCI drivers
kernel console tab completion

Location:
uspace/lib/drv
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/Makefile

    r1f7da3b r1bebadee  
    4646        generic/remote_pci.c \
    4747        generic/remote_usbhc.c \
    48         generic/remote_usbhid.c
     48        generic/remote_usbhid.c \
     49        generic/remote_ahci.c
    4950
    5051include $(USPACE_PREFIX)/Makefile.common
  • uspace/lib/drv/generic/dev_iface.c

    r1f7da3b r1bebadee  
    4848#include "remote_audio_mixer.h"
    4949#include "remote_audio_pcm.h"
     50#include "remote_ahci.h"
    5051
    5152static const iface_dipatch_table_t remote_ifaces = {
     
    6061                [USBHC_DEV_IFACE] = &remote_usbhc_iface,
    6162                [USBHID_DEV_IFACE] = &remote_usbhid_iface,
     63                [AHCI_DEV_IFACE] = &remote_ahci_iface,
    6264        }
    6365};
Note: See TracChangeset for help on using the changeset viewer.