diff options
| -rw-r--r-- | drivers/scsi/aacraid/aacraid.h | 3 | ||||
| -rw-r--r-- | drivers/scsi/aacraid/linit.c | 2 | ||||
| -rw-r--r-- | drivers/scsi/aacraid/nark.c | 3 | ||||
| -rw-r--r-- | drivers/scsi/aacraid/rkt.c | 3 | ||||
| -rw-r--r-- | drivers/scsi/aacraid/rx.c | 2 |
5 files changed, 4 insertions, 9 deletions
diff --git a/drivers/scsi/aacraid/aacraid.h b/drivers/scsi/aacraid/aacraid.h index 1771851db6ef..249366f471cc 100644 --- a/drivers/scsi/aacraid/aacraid.h +++ b/drivers/scsi/aacraid/aacraid.h | |||
| @@ -1843,8 +1843,11 @@ struct aac_driver_ident* aac_get_driver_ident(int devtype); | |||
| 1843 | int aac_get_adapter_info(struct aac_dev* dev); | 1843 | int aac_get_adapter_info(struct aac_dev* dev); |
| 1844 | int aac_send_shutdown(struct aac_dev *dev); | 1844 | int aac_send_shutdown(struct aac_dev *dev); |
| 1845 | int aac_probe_container(struct aac_dev *dev, int cid); | 1845 | int aac_probe_container(struct aac_dev *dev, int cid); |
| 1846 | int _aac_rx_init(struct aac_dev *dev); | ||
| 1847 | int aac_rx_select_comm(struct aac_dev *dev, int comm); | ||
| 1846 | extern int numacb; | 1848 | extern int numacb; |
| 1847 | extern int acbsize; | 1849 | extern int acbsize; |
| 1848 | extern char aac_driver_version[]; | 1850 | extern char aac_driver_version[]; |
| 1849 | extern int startup_timeout; | 1851 | extern int startup_timeout; |
| 1850 | extern int aif_timeout; | 1852 | extern int aif_timeout; |
| 1853 | extern int expose_physicals; | ||
diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c index a5950c17d62b..350ea7feb61d 100644 --- a/drivers/scsi/aacraid/linit.c +++ b/drivers/scsi/aacraid/linit.c | |||
| @@ -82,8 +82,6 @@ static LIST_HEAD(aac_devices); | |||
| 82 | static int aac_cfg_major = -1; | 82 | static int aac_cfg_major = -1; |
| 83 | char aac_driver_version[] = AAC_DRIVER_FULL_VERSION; | 83 | char aac_driver_version[] = AAC_DRIVER_FULL_VERSION; |
| 84 | 84 | ||
| 85 | extern int expose_physicals; | ||
| 86 | |||
| 87 | /* | 85 | /* |
| 88 | * Because of the way Linux names scsi devices, the order in this table has | 86 | * Because of the way Linux names scsi devices, the order in this table has |
| 89 | * become important. Check for on-board Raid first, add-in cards second. | 87 | * become important. Check for on-board Raid first, add-in cards second. |
diff --git a/drivers/scsi/aacraid/nark.c b/drivers/scsi/aacraid/nark.c index c76b611b6afb..a8ace5677813 100644 --- a/drivers/scsi/aacraid/nark.c +++ b/drivers/scsi/aacraid/nark.c | |||
| @@ -74,9 +74,6 @@ static int aac_nark_ioremap(struct aac_dev * dev, u32 size) | |||
| 74 | 74 | ||
| 75 | int aac_nark_init(struct aac_dev * dev) | 75 | int aac_nark_init(struct aac_dev * dev) |
| 76 | { | 76 | { |
| 77 | extern int _aac_rx_init(struct aac_dev *dev); | ||
| 78 | extern int aac_rx_select_comm(struct aac_dev *dev, int comm); | ||
| 79 | |||
| 80 | /* | 77 | /* |
| 81 | * Fill in the function dispatch table. | 78 | * Fill in the function dispatch table. |
| 82 | */ | 79 | */ |
diff --git a/drivers/scsi/aacraid/rkt.c b/drivers/scsi/aacraid/rkt.c index d953c3fe998a..9c5fcfb398c2 100644 --- a/drivers/scsi/aacraid/rkt.c +++ b/drivers/scsi/aacraid/rkt.c | |||
| @@ -45,7 +45,6 @@ | |||
| 45 | static int aac_rkt_select_comm(struct aac_dev *dev, int comm) | 45 | static int aac_rkt_select_comm(struct aac_dev *dev, int comm) |
| 46 | { | 46 | { |
| 47 | int retval; | 47 | int retval; |
| 48 | extern int aac_rx_select_comm(struct aac_dev *dev, int comm); | ||
| 49 | retval = aac_rx_select_comm(dev, comm); | 48 | retval = aac_rx_select_comm(dev, comm); |
| 50 | if (comm == AAC_COMM_MESSAGE) { | 49 | if (comm == AAC_COMM_MESSAGE) { |
| 51 | /* | 50 | /* |
| @@ -97,8 +96,6 @@ static int aac_rkt_ioremap(struct aac_dev * dev, u32 size) | |||
| 97 | 96 | ||
| 98 | int aac_rkt_init(struct aac_dev *dev) | 97 | int aac_rkt_init(struct aac_dev *dev) |
| 99 | { | 98 | { |
| 100 | extern int _aac_rx_init(struct aac_dev *dev); | ||
| 101 | |||
| 102 | /* | 99 | /* |
| 103 | * Fill in the function dispatch table. | 100 | * Fill in the function dispatch table. |
| 104 | */ | 101 | */ |
diff --git a/drivers/scsi/aacraid/rx.c b/drivers/scsi/aacraid/rx.c index 391d4751338d..3e23aa6cac06 100644 --- a/drivers/scsi/aacraid/rx.c +++ b/drivers/scsi/aacraid/rx.c | |||
| @@ -294,7 +294,7 @@ static void aac_rx_notify_adapter(struct aac_dev *dev, u32 event) | |||
| 294 | * Start up processing on an i960 based AAC adapter | 294 | * Start up processing on an i960 based AAC adapter |
| 295 | */ | 295 | */ |
| 296 | 296 | ||
| 297 | void aac_rx_start_adapter(struct aac_dev *dev) | 297 | static void aac_rx_start_adapter(struct aac_dev *dev) |
| 298 | { | 298 | { |
| 299 | struct aac_init *init; | 299 | struct aac_init *init; |
| 300 | 300 | ||
