Commit a76106af authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley

[SCSI] aic79xx: make ahd_match_scb() static

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Acked-by: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 0a361e31
...@@ -1337,9 +1337,6 @@ int ahd_pci_test_register_access(struct ahd_softc *); ...@@ -1337,9 +1337,6 @@ int ahd_pci_test_register_access(struct ahd_softc *);
/************************** SCB and SCB queue management **********************/ /************************** SCB and SCB queue management **********************/
void ahd_qinfifo_requeue_tail(struct ahd_softc *ahd, void ahd_qinfifo_requeue_tail(struct ahd_softc *ahd,
struct scb *scb); struct scb *scb);
int ahd_match_scb(struct ahd_softc *ahd, struct scb *scb,
int target, char channel, int lun,
u_int tag, role_t role);
/****************************** Initialization ********************************/ /****************************** Initialization ********************************/
struct ahd_softc *ahd_alloc(void *platform_arg, char *name); struct ahd_softc *ahd_alloc(void *platform_arg, char *name);
......
...@@ -262,6 +262,9 @@ static void ahd_update_coalescing_values(struct ahd_softc *ahd, ...@@ -262,6 +262,9 @@ static void ahd_update_coalescing_values(struct ahd_softc *ahd,
u_int mincmds); u_int mincmds);
static int ahd_verify_vpd_cksum(struct vpd_config *vpd); static int ahd_verify_vpd_cksum(struct vpd_config *vpd);
static int ahd_wait_seeprom(struct ahd_softc *ahd); static int ahd_wait_seeprom(struct ahd_softc *ahd);
static int ahd_match_scb(struct ahd_softc *ahd, struct scb *scb,
int target, char channel, int lun,
u_int tag, role_t role);
/******************************** Private Inlines *****************************/ /******************************** Private Inlines *****************************/
...@@ -7256,7 +7259,7 @@ ahd_busy_tcl(struct ahd_softc *ahd, u_int tcl, u_int scbid) ...@@ -7256,7 +7259,7 @@ ahd_busy_tcl(struct ahd_softc *ahd, u_int tcl, u_int scbid)
} }
/************************** SCB and SCB queue management **********************/ /************************** SCB and SCB queue management **********************/
int static int
ahd_match_scb(struct ahd_softc *ahd, struct scb *scb, int target, ahd_match_scb(struct ahd_softc *ahd, struct scb *scb, int target,
char channel, int lun, u_int tag, role_t role) char channel, int lun, u_int tag, role_t role)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment