diff options
author | Namhyung Kim <namhyung@gmail.com> | 2010-09-15 23:55:57 -0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2010-09-16 02:25:45 -0400 |
commit | 2610a25406087ef797f4187e7f82dd04335056c7 (patch) | |
tree | f9a288acf417b5610c95d8c37bb6367f372e82b5 /drivers/scsi/sg.c | |
parent | b5af921ec02333e943efb59aca4f56b78fc0e100 (diff) |
sg: fix a warning in blk_rq_aligned() call
2nd argument of blk_rq_aligned() has changed to 'unsigned long' by
the previous commit 'block: fix an address space warning in blk-map.c'.
That commit neglected to update a user of that function.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/scsi/sg.c')
-rw-r--r-- | drivers/scsi/sg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c index 78d616315d8e..655ab920cff4 100644 --- a/drivers/scsi/sg.c +++ b/drivers/scsi/sg.c | |||
@@ -1657,7 +1657,7 @@ static int sg_start_req(Sg_request *srp, unsigned char *cmd) | |||
1657 | if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO && | 1657 | if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO && |
1658 | dxfer_dir != SG_DXFER_UNKNOWN && !iov_count && | 1658 | dxfer_dir != SG_DXFER_UNKNOWN && !iov_count && |
1659 | !sfp->parentdp->device->host->unchecked_isa_dma && | 1659 | !sfp->parentdp->device->host->unchecked_isa_dma && |
1660 | blk_rq_aligned(q, hp->dxferp, dxfer_len)) | 1660 | blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len)) |
1661 | md = NULL; | 1661 | md = NULL; |
1662 | else | 1662 | else |
1663 | md = &map_data; | 1663 | md = &map_data; |