diff options
author | Markus Lidel <Markus.Lidel@shadowconnect.com> | 2006-01-06 03:19:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 11:33:54 -0500 |
commit | 2e1973a3cd0b9fe31469be62df3583bdc5a34f51 (patch) | |
tree | e44d7f091fca1cb64037555f5e856a3f2d027e8b /drivers/message/i2o/i2o_block.c | |
parent | dcceafe25a5f47cf69e5b46b4da6f15186ec8386 (diff) |
[PATCH] I2O: Beautifying
Fix some typos and minor code beautifying.
Signed-off-by: Markus Lidel <Markus.Lidel@shadowconnect.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/message/i2o/i2o_block.c')
-rw-r--r-- | drivers/message/i2o/i2o_block.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/message/i2o/i2o_block.c b/drivers/message/i2o/i2o_block.c index ed2df54bf46..3e865b793f2 100644 --- a/drivers/message/i2o/i2o_block.c +++ b/drivers/message/i2o/i2o_block.c | |||
@@ -59,10 +59,12 @@ | |||
59 | #include <linux/blkdev.h> | 59 | #include <linux/blkdev.h> |
60 | #include <linux/hdreg.h> | 60 | #include <linux/hdreg.h> |
61 | 61 | ||
62 | #include <scsi/scsi.h> | ||
63 | |||
62 | #include "i2o_block.h" | 64 | #include "i2o_block.h" |
63 | 65 | ||
64 | #define OSM_NAME "block-osm" | 66 | #define OSM_NAME "block-osm" |
65 | #define OSM_VERSION "1.287" | 67 | #define OSM_VERSION "1.316" |
66 | #define OSM_DESCRIPTION "I2O Block Device OSM" | 68 | #define OSM_DESCRIPTION "I2O Block Device OSM" |
67 | 69 | ||
68 | static struct i2o_driver i2o_block_driver; | 70 | static struct i2o_driver i2o_block_driver; |
@@ -845,10 +847,10 @@ static int i2o_block_transfer(struct request *req) | |||
845 | * RETURN_SENSE_DATA_IN_REPLY_MESSAGE_FRAME | 847 | * RETURN_SENSE_DATA_IN_REPLY_MESSAGE_FRAME |
846 | */ | 848 | */ |
847 | if (rq_data_dir(req) == READ) { | 849 | if (rq_data_dir(req) == READ) { |
848 | cmd[0] = 0x28; | 850 | cmd[0] = READ_10; |
849 | scsi_flags = 0x60a0000a; | 851 | scsi_flags = 0x60a0000a; |
850 | } else { | 852 | } else { |
851 | cmd[0] = 0x2A; | 853 | cmd[0] = WRITE_10; |
852 | scsi_flags = 0xa0a0000a; | 854 | scsi_flags = 0xa0a0000a; |
853 | } | 855 | } |
854 | 856 | ||