mirror of https://gitee.com/openkylin/linux.git
[SCSI] qla2xxx: make qla2x00_issue_iocb_timeout() static
This patch makes the needlessly global qla2x00_issue_iocb_timeout() static. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
01ef66bbb6
commit
3b8117b837
|
@ -151,10 +151,6 @@ qla2x00_verify_checksum(scsi_qla_host_t *, uint32_t);
|
|||
extern int
|
||||
qla2x00_issue_iocb(scsi_qla_host_t *, void *, dma_addr_t, size_t);
|
||||
|
||||
extern int
|
||||
qla2x00_issue_iocb_timeout(scsi_qla_host_t *, void *, dma_addr_t, size_t,
|
||||
uint32_t);
|
||||
|
||||
extern int
|
||||
qla2x00_abort_command(scsi_qla_host_t *, srb_t *);
|
||||
|
||||
|
|
|
@ -681,7 +681,7 @@ qla2x00_verify_checksum(scsi_qla_host_t *ha, uint32_t risc_addr)
|
|||
* Context:
|
||||
* Kernel context.
|
||||
*/
|
||||
int
|
||||
static int
|
||||
qla2x00_issue_iocb_timeout(scsi_qla_host_t *ha, void *buffer,
|
||||
dma_addr_t phys_addr, size_t size, uint32_t tov)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue