Changeset 8e7c9fe in mainline for kernel/genarch/src/ddi/ddi-dummy.c


Ignore:
Timestamp:
2014-09-12T03:45:25Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c53b58e
Parents:
3eb0c85 (diff), 105d8d6 (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

most usb changes were reverted. blink and usbmass were fixed
known problems:
ehci won't initialize
usbmast asserts on unmount (happens on mainline too)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/ddi/ddi-dummy.c

    r3eb0c85 r8e7c9fe  
    2727 */
    2828
    29 /** @addtogroup sparc64ddi
     29/** @addtogroup genarch
    3030 * @{
    3131 */
    3232/** @file
     33 *  @brief DDI.
    3334 */
    3435
     
    4142 * Interrupts are disabled and task is locked.
    4243 *
    43  * @param task Task.
     44 * @param task   Task.
    4445 * @param ioaddr Starting I/O space address.
    45  * @param size Size of the enabled I/O range.
     46 * @param size   Size of the enabled I/O range.
    4647 *
    47  * @return 0 on success or an error code from errno.h.
     48 * @return EOK on success or an error code from errno.h.
    4849 */
    4950int ddi_iospace_enable_arch(task_t *task, uintptr_t ioaddr, size_t size)
     
    5253}
    5354
     55/** Disable I/O space range for task.
     56 *
     57 * Interrupts are disabled and task is locked.
     58 *
     59 * @param task   Task.
     60 * @param ioaddr Starting I/O space address.
     61 * @param size   Size of the disabled I/O range.
     62 *
     63 * @return EOK on success or an error code from errno.h.
     64 */
     65int ddi_iospace_disable_arch(task_t *task, uintptr_t ioaddr, size_t size)
     66{
     67        return 0;
     68}
     69
    5470/** @}
    5571 */
Note: See TracChangeset for help on using the changeset viewer.