|
Kernel Functions for Drivers | csx_GetMappedAddr(9F) |
| csx_GetMappedAddr - return mapped virtual address |
SYNOPSIS
|
#include <sys/pccard.h>
int32_t csx_GetMappedAddr(acc_handle_t handle, void **addr); |
|
Solaris DDI Specific (Solaris DDI)
|
|
This function returns the mapped virtual address or the mapped I/O port number represented by the handle, handle.
|
|
-
CS_SUCCESS
- The resulting address or I/O port
number can be directly accessed by the caller.
-
CS_FAILURE
- The resulting address or I/O port number can not be directly accessed
by the caller; the caller must make all accesses to the mapped area via the common access functions.
-
CS_UNSUPPORTED_FUNCTION
- No PCMCIA hardware installed.
|
|
This function may be called from user, kernel, or interrupt context.
|
| |