| Fix enum types mismatch. |
| |
| diff -ru --exclude-from freebsd-src-diff-exclude-names /var/tmp/freebsd-10.3-src/usr/src/sys/dev/isci/scil/scif_sas_smp_remote_device.c freebsd-10.3/usr/src/sys/dev/isci/scil/scif_sas_smp_remote_device.c |
| --- /var/tmp/freebsd-10.3-src/usr/src/sys/dev/isci/scil/scif_sas_smp_remote_device.c 2016-03-25 09:09:35.000000000 +0800 |
| +++ freebsd-10.3/usr/src/sys/dev/isci/scil/scif_sas_smp_remote_device.c 2019-03-11 22:03:58.865292425 +0800 |
| @@ -194,7 +194,7 @@ |
| |
| //if Core set the status of this io to be RETRY_REQUIRED, we should |
| //retry the IO without even decode the response. |
| - if (completion_status == SCI_FAILURE_RETRY_REQUIRED) |
| + if (completion_status == SCI_IO_FAILURE_RETRY_REQUIRED) |
| { |
| scif_sas_smp_remote_device_continue_current_activity( |
| fw_device, fw_request, SCI_FAILURE_RETRY_REQUIRED |