mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
[SCSI] a3000: make 2 functions static
a3000_{detect,release}() can become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
e0aae1a531
commit
9387edbe60
2 changed files with 4 additions and 5 deletions
|
@ -25,6 +25,8 @@
|
||||||
|
|
||||||
static struct Scsi_Host *a3000_host = NULL;
|
static struct Scsi_Host *a3000_host = NULL;
|
||||||
|
|
||||||
|
static int a3000_release(struct Scsi_Host *instance);
|
||||||
|
|
||||||
static irqreturn_t a3000_intr (int irq, void *dummy)
|
static irqreturn_t a3000_intr (int irq, void *dummy)
|
||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
@ -157,7 +159,7 @@ static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int __init a3000_detect(struct scsi_host_template *tpnt)
|
static int __init a3000_detect(struct scsi_host_template *tpnt)
|
||||||
{
|
{
|
||||||
wd33c93_regs regs;
|
wd33c93_regs regs;
|
||||||
|
|
||||||
|
@ -232,7 +234,7 @@ static struct scsi_host_template driver_template = {
|
||||||
|
|
||||||
#include "scsi_module.c"
|
#include "scsi_module.c"
|
||||||
|
|
||||||
int a3000_release(struct Scsi_Host *instance)
|
static int a3000_release(struct Scsi_Host *instance)
|
||||||
{
|
{
|
||||||
wd33c93_release();
|
wd33c93_release();
|
||||||
DMA(instance)->CNTR = 0;
|
DMA(instance)->CNTR = 0;
|
||||||
|
|
|
@ -11,9 +11,6 @@
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
int a3000_detect(struct scsi_host_template *);
|
|
||||||
int a3000_release(struct Scsi_Host *);
|
|
||||||
|
|
||||||
#ifndef CMD_PER_LUN
|
#ifndef CMD_PER_LUN
|
||||||
#define CMD_PER_LUN 2
|
#define CMD_PER_LUN 2
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue