From: Andrew Morton It looks odd at present. We might as well follow the surrounding style, fix it all up later. Cc: Henrik Kretzschmar Signed-off-by: Andrew Morton --- drivers/scsi/in2000.h | 12 ++++-------- 1 files changed, 4 insertions(+), 8 deletions(-) diff -puN drivers/scsi/in2000.h~scsi-in2000-scsi_cmnd-convertion-tidy drivers/scsi/in2000.h --- a/drivers/scsi/in2000.h~scsi-in2000-scsi_cmnd-convertion-tidy +++ a/drivers/scsi/in2000.h @@ -283,14 +283,10 @@ struct IN2000_hostdata { unsigned int dip_switch; /* dip switch settings */ unsigned int hrev; /* hardware revision of card */ volatile uchar busy[8]; /* index = target, bit = lun */ - volatile struct scsi_cmnd *input_Q; - /* commands waiting to be started */ - volatile struct scsi_cmnd *selecting; - /* trying to select this command */ - volatile struct scsi_cmnd *connected; - /* currently connected command */ - volatile struct scsi_cmnd *disconnected_Q; - /* commands waiting for reconnect*/ + volatile struct scsi_cmnd *input_Q;/* commands waiting to be started */ + volatile struct scsi_cmnd *selecting;/* trying to select this command */ + volatile struct scsi_cmnd *connected;/* currently connected command */ + volatile struct scsi_cmnd *disconnected_Q;/* commands waiting for reconnect*/ uchar state; /* what we are currently doing */ uchar fifo; /* what the FIFO is up to */ uchar level2; /* extent to which Level-2 commands are used */ _