diff options
author | Monam Agarwal <monamagarwal123@gmail.com> | 2014-03-06 01:49:16 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-07 15:24:25 -0800 |
commit | 064bf470960b0d74955c2ed0f3ce05e95f087470 (patch) | |
tree | f364dfb7a9cd698f67772a18761a2d3e0f15cc3f /drivers/staging/rts5139 | |
parent | 4096ec993f108b7817900c1b01f364e843d9ded4 (diff) |
Staging: rts5139: Fix Sparse Warning for Static Declarations
This patch fixes the following Sparse warnings :
formatter_inquiry_str should be static
queuecommand_lck should be static
Signed-off-by: Monam Agarwal <monamagarwal123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rts5139')
-rw-r--r-- | drivers/staging/rts5139/rts51x_scsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rts5139/rts51x_scsi.c b/drivers/staging/rts5139/rts51x_scsi.c index 3a990253c780..75282fea38f7 100644 --- a/drivers/staging/rts5139/rts51x_scsi.c +++ b/drivers/staging/rts5139/rts51x_scsi.c @@ -441,7 +441,7 @@ static int test_unit_ready(struct scsi_cmnd *srb, struct rts51x_chip *chip) return TRANSPORT_GOOD; } -unsigned char formatter_inquiry_str[20] = { +static unsigned char formatter_inquiry_str[20] = { 'M', 'E', 'M', 'O', 'R', 'Y', 'S', 'T', 'I', 'C', 'K', '-', 'M', 'G', /* Byte[47:49] */ 0x0B, /* Byte[50]: MG, MS, MSPro, MSXC */ @@ -1990,7 +1990,7 @@ static int show_info(struct seq_file *m, struct Scsi_Host *host) /* queue a command */ /* This is always called with scsi_lock(host) held */ -int queuecommand_lck(struct scsi_cmnd *srb, void (*done) (struct scsi_cmnd *)) +static int queuecommand_lck(struct scsi_cmnd *srb, void (*done) (struct scsi_cmnd *)) { struct rts51x_chip *chip = host_to_rts51x(srb->device->host); |