diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2009-11-04 03:10:33 -0500 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-11-04 03:10:33 -0500 |
commit | 476d42f138ba82389a92a894d8a630a70d36278f (patch) | |
tree | 87ab38bd8c5ccfe5b2aa0de0f434768eb7b59cad /block | |
parent | cc56f7de7f00d188c7c4da1e9861581853b9e92f (diff) |
block/scsi_ioctl.c: quiet sparse noise
Quiet sparse noise about symbol's not being declared.
Symbol blk_default_cmd_filter is only used locally and should be static.
The function blk_scsi_ioctl_init() is a fs_initcall and should also be
static.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/scsi_ioctl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/block/scsi_ioctl.c b/block/scsi_ioctl.c index e5b10017a50b..a8b5a10eb5b0 100644 --- a/block/scsi_ioctl.c +++ b/block/scsi_ioctl.c | |||
@@ -35,7 +35,9 @@ | |||
35 | struct blk_cmd_filter { | 35 | struct blk_cmd_filter { |
36 | unsigned long read_ok[BLK_SCSI_CMD_PER_LONG]; | 36 | unsigned long read_ok[BLK_SCSI_CMD_PER_LONG]; |
37 | unsigned long write_ok[BLK_SCSI_CMD_PER_LONG]; | 37 | unsigned long write_ok[BLK_SCSI_CMD_PER_LONG]; |
38 | } blk_default_cmd_filter; | 38 | }; |
39 | |||
40 | static struct blk_cmd_filter blk_default_cmd_filter; | ||
39 | 41 | ||
40 | /* Command group 3 is reserved and should never be used. */ | 42 | /* Command group 3 is reserved and should never be used. */ |
41 | const unsigned char scsi_command_size_tbl[8] = | 43 | const unsigned char scsi_command_size_tbl[8] = |
@@ -675,7 +677,7 @@ int scsi_cmd_ioctl(struct request_queue *q, struct gendisk *bd_disk, fmode_t mod | |||
675 | } | 677 | } |
676 | EXPORT_SYMBOL(scsi_cmd_ioctl); | 678 | EXPORT_SYMBOL(scsi_cmd_ioctl); |
677 | 679 | ||
678 | int __init blk_scsi_ioctl_init(void) | 680 | static int __init blk_scsi_ioctl_init(void) |
679 | { | 681 | { |
680 | blk_set_cmd_filter_defaults(&blk_default_cmd_filter); | 682 | blk_set_cmd_filter_defaults(&blk_default_cmd_filter); |
681 | return 0; | 683 | return 0; |