Commit c67a848c authored by Matthew Wilcox's avatar Matthew Wilcox Committed by

[SCSI] Neaten comments in scsi_cmnd.h

Wrap these two comments at 80 columns
Signed-off-by: default avatarMatthew Wilcox <matthew@wil.cx>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 24669f75
...@@ -104,10 +104,10 @@ struct scsi_cmnd { ...@@ -104,10 +104,10 @@ struct scsi_cmnd {
working on */ working on */
#define SCSI_SENSE_BUFFERSIZE 96 #define SCSI_SENSE_BUFFERSIZE 96
unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE]; /* obtained by REQUEST SENSE unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE];
* when CHECK CONDITION is /* obtained by REQUEST SENSE when
* received on original command * CHECK CONDITION is received on original
* (auto-sense) */ * command (auto-sense) */
/* Low-level done function - can be used by low-level driver to point /* Low-level done function - can be used by low-level driver to point
* to completion function. Not used by mid/upper level code. */ * to completion function. Not used by mid/upper level code. */
...@@ -120,12 +120,12 @@ struct scsi_cmnd { ...@@ -120,12 +120,12 @@ struct scsi_cmnd {
struct scsi_pointer SCp; /* Scratchpad used by some host adapters */ struct scsi_pointer SCp; /* Scratchpad used by some host adapters */
unsigned char *host_scribble; /* The host adapter is allowed to unsigned char *host_scribble; /* The host adapter is allowed to
* call scsi_malloc and get some memory * call scsi_malloc and get some memory
* and hang it here. The host adapter * and hang it here. The host adapter
* is also expected to call scsi_free * is also expected to call scsi_free
* to release this memory. (The memory * to release this memory. (The memory
* obtained by scsi_malloc is guaranteed * obtained by scsi_malloc is guaranteed
* to be at an address < 16Mb). */ * to be at an address < 16Mb). */
int result; /* Status code from lower level driver */ int result; /* Status code from lower level driver */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment