Skip to content

Latest commit

 

History

History
43 lines (24 loc) · 956 Bytes

pci_map_interrupt.md

File metadata and controls

43 lines (24 loc) · 956 Bytes

zx_pci_map_interrupt

SUMMARY

This function is obsolete and should not be used.

DECLARATION

#include <zircon/syscalls.h>

zx_status_t zx_pci_map_interrupt(zx_handle_t handle,
                                 int32_t which_irq,
                                 zx_handle_t* out_handle);

DESCRIPTION

This function is obsolete and should not be used. Drivers should instead use the PCI protocol Typically, you obtain this in your bind() function through device_get_protocol().

RIGHTS

handle must be of type ZX_OBJ_TYPE_PCI_DEVICE and have ZX_RIGHT_READ.

RETURN VALUE

TODO(fxbug.dev/32938)

ERRORS

TODO(fxbug.dev/32938)

SEE ALSO

TODO(fxbug.dev/32938)