Skip to content

Commit

Permalink
scsi/atari: Make more functions static
Browse files Browse the repository at this point in the history
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michael Schmitz <schmitzmic@googlemail.com>
Cc: James E.J. Bottomley <JBottomley@parallels.com>
Cc: linux-scsi@vger.kernel.org
  • Loading branch information
Geert Uytterhoeven committed Apr 22, 2012
1 parent 7b54e43 commit 107b5d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
13 changes: 7 additions & 6 deletions drivers/scsi/atari_scsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ static void falcon_get_lock(void)
}


int __init atari_scsi_detect(struct scsi_host_template *host)
static int __init atari_scsi_detect(struct scsi_host_template *host)
{
static int called = 0;
struct Scsi_Host *instance;
Expand Down Expand Up @@ -724,7 +724,7 @@ int __init atari_scsi_detect(struct scsi_host_template *host)
return 1;
}

int atari_scsi_release(struct Scsi_Host *sh)
static int atari_scsi_release(struct Scsi_Host *sh)
{
if (IS_A_TT())
free_irq(IRQ_TT_MFP_SCSI, sh);
Expand Down Expand Up @@ -788,7 +788,7 @@ static int __init atari_scsi_setup(char *str)
__setup("atascsi=", atari_scsi_setup);
#endif /* !MODULE */

int atari_scsi_bus_reset(Scsi_Cmnd *cmd)
static int atari_scsi_bus_reset(Scsi_Cmnd *cmd)
{
int rv;
struct NCR5380_hostdata *hostdata =
Expand Down Expand Up @@ -861,7 +861,7 @@ static void __init atari_scsi_reset_boot(void)
#endif


const char *atari_scsi_info(struct Scsi_Host *host)
static const char *atari_scsi_info(struct Scsi_Host *host)
{
/* atari_scsi_detect() is verbose enough... */
static const char string[] = "Atari native SCSI";
Expand All @@ -871,8 +871,9 @@ const char *atari_scsi_info(struct Scsi_Host *host)

#if defined(REAL_DMA)

unsigned long atari_scsi_dma_setup(struct Scsi_Host *instance, void *data,
unsigned long count, int dir)
static unsigned long atari_scsi_dma_setup(struct Scsi_Host *instance,
void *data, unsigned long count,
int dir)
{
unsigned long addr = virt_to_phys(data);

Expand Down
5 changes: 0 additions & 5 deletions drivers/scsi/atari_scsi.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@
/* (I_HAVE_OVERRUNS stuff removed) */

#ifndef ASM
int atari_scsi_detect (struct scsi_host_template *);
const char *atari_scsi_info (struct Scsi_Host *);
int atari_scsi_reset (Scsi_Cmnd *, unsigned int);
int atari_scsi_release (struct Scsi_Host *);

/* The values for CMD_PER_LUN and CAN_QUEUE are somehow arbitrary. Higher
* values should work, too; try it! (but cmd_per_lun costs memory!) */

Expand Down

0 comments on commit 107b5d5

Please sign in to comment.