diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-11-26 16:15:50 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-29 17:56:06 -0500 |
commit | b194aee95622f649311f8e53418a17e210ff6827 (patch) | |
tree | 3b63716fb40b3839a88ecb17fda61f09d2f6b94a /drivers/block/virtio_blk.c | |
parent | 0864b79a153342c1dfbebb12b2d099fec76c5e18 (diff) |
virtio_blk: fix type warning
Fix parameter type warning:
linux-next-20081126/drivers/block/virtio_blk.c:307: warning: large integer implicitly truncated to unsigned type
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/block/virtio_blk.c')
-rw-r--r-- | drivers/block/virtio_blk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 7b9b38a12d25..300078b02e5d 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c | |||
@@ -304,7 +304,7 @@ static int virtblk_probe(struct virtio_device *vdev) | |||
304 | if (!err) | 304 | if (!err) |
305 | blk_queue_max_segment_size(vblk->disk->queue, v); | 305 | blk_queue_max_segment_size(vblk->disk->queue, v); |
306 | else | 306 | else |
307 | blk_queue_max_segment_size(vblk->disk->queue, -1UL); | 307 | blk_queue_max_segment_size(vblk->disk->queue, -1U); |
308 | 308 | ||
309 | /* Host can optionally specify the block size of the device */ | 309 | /* Host can optionally specify the block size of the device */ |
310 | err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE, | 310 | err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE, |