Commit 85146e0d authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley

[PATCH] SCSI mca_53c9x.c: make 2 functions static

The patch below makes two functions without external users static.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 1aa96f00
...@@ -103,7 +103,7 @@ static volatile unsigned char cmd_buffer[16]; ...@@ -103,7 +103,7 @@ static volatile unsigned char cmd_buffer[16];
static struct ESP_regs eregs; static struct ESP_regs eregs;
/***************************************************************** Detection */ /***************************************************************** Detection */
int mca_esp_detect(Scsi_Host_Template *tpnt) static int mca_esp_detect(Scsi_Host_Template *tpnt)
{ {
struct NCR_ESP *esp; struct NCR_ESP *esp;
static int io_port_by_pos[] = MCA_53C9X_IO_PORTS; static int io_port_by_pos[] = MCA_53C9X_IO_PORTS;
...@@ -283,7 +283,7 @@ int mca_esp_detect(Scsi_Host_Template *tpnt) ...@@ -283,7 +283,7 @@ int mca_esp_detect(Scsi_Host_Template *tpnt)
/******************************************************************* Release */ /******************************************************************* Release */
int mca_esp_release(struct Scsi_Host *host) static int mca_esp_release(struct Scsi_Host *host)
{ {
struct NCR_ESP *esp = (struct NCR_ESP *)host->hostdata; struct NCR_ESP *esp = (struct NCR_ESP *)host->hostdata;
unsigned char tmp_byte; unsigned char tmp_byte;
......
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