-/*! @function withRange
- @abstract Constructs an IODeviceMemory instance, describing a subset of an existing IODeviceMemory range.
- @discussion This method creates IODeviceMemory instance for a subset of an existing IODeviceMemory range, passed as a physical address offset and length. It just calls IOMemoryDescriptor::withSubRange.
- @param of The parent IODeviceMemory of which a subrange is to be used for the new descriptor, which will be retained by the subrange IODeviceMemory.
- @param offset A byte offset into the parent's memory.
- @param length The length of the subrange.
- @result The created IODeviceMemory on success, to be released by the caller, or zero on failure. */
+/*! @function withSubRange
+ * @abstract Constructs an IODeviceMemory instance, describing a subset of an existing IODeviceMemory range.
+ * @discussion This method creates an IODeviceMemory instance for a subset of an existing IODeviceMemory range, passed as a physical address offset and length. It just calls IOMemoryDescriptor::withSubRange.
+ * @param of The parent IODeviceMemory of which a subrange is to be used for the new descriptor, which will be retained by the subrange IODeviceMemory.
+ * @param offset A byte offset into the parent's memory.
+ * @param length The length of the subrange.
+ * @result Returns the created IODeviceMemory on success, to be released by the caller, or zero on failure. */