@@ -347,7 +347,7 @@ static uint8_t arcmsr_hbaA_wait_msgint_ready(struct AdapterControlBlock *acb)
®->outbound_intstatus);
return true;
}
- msleep(10);
+ mdelay(10);
} /* max 20 seconds */
return false;
@@ -367,7 +367,7 @@ static uint8_t arcmsr_hbaB_wait_msgint_ready(struct AdapterControlBlock *acb)
reg->drv2iop_doorbell);
return true;
}
- msleep(10);
+ mdelay(10);
} /* max 20 seconds */
return false;
@@ -385,7 +385,7 @@ static uint8_t arcmsr_hbaC_wait_msgint_ready(struct AdapterControlBlock *pACB)
&phbcmu->outbound_doorbell_clear); /*clear interrupt*/
return true;
}
- msleep(10);
+ mdelay(10);
} /* max 20 seconds */
return false;
@@ -403,7 +403,7 @@ static bool arcmsr_hbaD_wait_msgint_ready(struct AdapterControlBlock *pACB)
reg->outbound_doorbell);
return true;
}
- msleep(10);
+ mdelay(10);
} /* max 20 seconds */
return false;
}