diff options
Diffstat (limited to 'sys/dev/isci/isci.h')
-rw-r--r-- | sys/dev/isci/isci.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/dev/isci/isci.h b/sys/dev/isci/isci.h index 006d33a..1dc8e93 100644 --- a/sys/dev/isci/isci.h +++ b/sys/dev/isci/isci.h @@ -143,11 +143,14 @@ struct ISCI_INTERRUPT_INFO }; -struct ISCI_LED +struct ISCI_PHY { - struct cdev *cdev; + struct cdev *cdev_fault; + struct cdev *cdev_locate; SCI_CONTROLLER_HANDLE_T handle; int index; + int led_fault; + int led_locate; }; struct ISCI_CONTROLLER @@ -176,7 +179,7 @@ struct ISCI_CONTROLLER uint32_t queue_depth; uint32_t sim_queue_depth; SCI_FAST_LIST_T pending_device_reset_list; - struct ISCI_LED led[SCI_MAX_PHYS]; + struct ISCI_PHY phys[SCI_MAX_PHYS]; SCI_MEMORY_DESCRIPTOR_LIST_HANDLE_T mdl; |