Changeset 8cd680c in mainline for kernel/arch/ppc32/src/ddi/ddi.c
- Timestamp:
- 2014-08-18T20:34:28Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6eeb4a3
- Parents:
- 8820544
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/ddi/ddi.c
r8820544 r8cd680c 41 41 * Interrupts are disabled and task is locked. 42 42 * 43 * @param task Task.44 * @param ioaddr Starti gnI/O space address.45 * @param size Size of the enabled I/O range.43 * @param task Task. 44 * @param ioaddr Starting I/O space address. 45 * @param size Size of the enabled I/O range. 46 46 * 47 47 * @return 0 on success or an error code from errno.h. … … 53 53 } 54 54 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 0 on success or an error code from errno.h. 64 * 65 */ 66 int ddi_iospace_disable_arch(task_t *task, uintptr_t ioaddr, size_t size) 67 { 68 return 0; 69 } 70 55 71 /** @} 56 72 */
Note:
See TracChangeset
for help on using the changeset viewer.