Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 514 of file scsiport.c.
Referenced by AtapiFindController(), AtapiFindNativeModeController(), AtapiFindPCIController(), AtapiGetIoRange(), BT958HwFindAdapter(), and UniataFindBusMasterController().
{ PHYSICAL_ADDRESS TranslatedAddress; ULONG AddressSpace; AddressSpace = (ULONG)InIoSpace; if (HalTranslateBusAddress(BusType, SystemIoBusNumber, IoAddress, &AddressSpace, &TranslatedAddress) == FALSE) { return NULL; } /* I/O space */ if (AddressSpace != 0) return (PVOID)TranslatedAddress.u.LowPart; // FIXME UNIMPLEMENTED; return (PVOID)IoAddress.LowPart; }