StorPortWriteRegisterBufferUchar macro (storport.h)

The StorPortWriteRegisterBufferUchar routine transfers a given number of unsigned bytes from a buffer to the HBA.

Syntax

void StorPortWriteRegisterBufferUchar(
   h,
   r,
   b,
   c
);

Parameters

h

A pointer to the hardware device extension. This is a per HBA storage area that the port driver allocates and initializes on behalf of the miniport driver. Miniport drivers usually store HBA-specific information in this extension, such as the state of the HBA and the mapped access ranges for the HBA. This area is available to the miniport driver immediately after the miniport driver calls StorPortInitialize. The port driver frees this memory when it removes the device.

r

Pointer to the register. The given Register must be in a mapped memory-space range returned by StorPortGetDeviceBase.

b

Pointer to a buffer containing the data to be written.

c

Specifies the number of bytes to be transferred to the HBA.

Return value

None

Requirements

Requirement Value
Target Platform Universal
Header storport.h (include Storport.h)
Library Storport.lib

See also

ScsiPortWriteRegisterBufferUchar