| .. | .. |
|---|
| 1034 | 1034 | temp6 >>= 1; |
|---|
| 1035 | 1035 | switch (temp & 0x3) { |
|---|
| 1036 | 1036 | case AUTO_RATE_20: /* Synchronous, 20 mega-transfers/second */ |
|---|
| 1037 | | - temp6 |= 0x8000; /* Fall through */ |
|---|
| 1037 | + temp6 |= 0x8000; |
|---|
| 1038 | + fallthrough; |
|---|
| 1038 | 1039 | case AUTO_RATE_10: /* Synchronous, 10 mega-transfers/second */ |
|---|
| 1039 | | - temp5 |= 0x8000; /* Fall through */ |
|---|
| 1040 | + temp5 |= 0x8000; |
|---|
| 1041 | + fallthrough; |
|---|
| 1040 | 1042 | case AUTO_RATE_05: /* Synchronous, 5 mega-transfers/second */ |
|---|
| 1041 | | - temp2 |= 0x8000; /* Fall through */ |
|---|
| 1043 | + temp2 |= 0x8000; |
|---|
| 1044 | + fallthrough; |
|---|
| 1042 | 1045 | case AUTO_RATE_00: /* Asynchronous */ |
|---|
| 1043 | 1046 | break; |
|---|
| 1044 | 1047 | } |
|---|
| .. | .. |
|---|
| 2944 | 2947 | } |
|---|
| 2945 | 2948 | |
|---|
| 2946 | 2949 | if (currSCCB->Lun == 0x00) { |
|---|
| 2947 | | - if ((currSCCB->Sccb_scsistat == SELECT_SN_ST)) { |
|---|
| 2950 | + if (currSCCB->Sccb_scsistat == SELECT_SN_ST) { |
|---|
| 2948 | 2951 | |
|---|
| 2949 | 2952 | currTar_Info->TarStatus |= |
|---|
| 2950 | 2953 | (unsigned char)SYNC_SUPPORTED; |
|---|
| .. | .. |
|---|
| 2953 | 2956 | ~EE_SYNC_MASK; |
|---|
| 2954 | 2957 | } |
|---|
| 2955 | 2958 | |
|---|
| 2956 | | - else if ((currSCCB->Sccb_scsistat == |
|---|
| 2957 | | - SELECT_WN_ST)) { |
|---|
| 2959 | + else if (currSCCB->Sccb_scsistat == |
|---|
| 2960 | + SELECT_WN_ST) { |
|---|
| 2958 | 2961 | |
|---|
| 2959 | 2962 | currTar_Info->TarStatus = |
|---|
| 2960 | 2963 | (currTar_Info-> |
|---|