Commit 24c43341 authored by Finn Thain's avatar Finn Thain Committed by Martin K. Petersen

scsi: g_NCR5380: Cleanup comments and whitespace

Signed-off-by: default avatarFinn Thain <fthain@telegraphics.com.au>
Tested-by: default avatarOndrej Zary <linux@rainbow-software.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent e9dbadf7
...@@ -483,11 +483,10 @@ static void generic_NCR5380_release_resources(struct Scsi_Host *instance) ...@@ -483,11 +483,10 @@ static void generic_NCR5380_release_resources(struct Scsi_Host *instance)
/** /**
* generic_NCR5380_pread - pseudo DMA read * generic_NCR5380_pread - pseudo DMA read
* @hostdata: scsi host private data * @hostdata: scsi host private data
* @dst: buffer to read into * @dst: buffer to write into
* @len: buffer length * @len: transfer size
* *
* Perform a pseudo DMA mode read from an NCR53C400 or equivalent * Perform a pseudo DMA mode receive from a 53C400 or equivalent device.
* controller
*/ */
static inline int generic_NCR5380_pread(struct NCR5380_hostdata *hostdata, static inline int generic_NCR5380_pread(struct NCR5380_hostdata *hostdata,
...@@ -560,11 +559,10 @@ static inline int generic_NCR5380_pread(struct NCR5380_hostdata *hostdata, ...@@ -560,11 +559,10 @@ static inline int generic_NCR5380_pread(struct NCR5380_hostdata *hostdata,
/** /**
* generic_NCR5380_pwrite - pseudo DMA write * generic_NCR5380_pwrite - pseudo DMA write
* @hostdata: scsi host private data * @hostdata: scsi host private data
* @dst: buffer to read into * @src: buffer to read from
* @len: buffer length * @len: transfer size
* *
* Perform a pseudo DMA mode read from an NCR53C400 or equivalent * Perform a pseudo DMA mode send to a 53C400 or equivalent device.
* controller
*/ */
static inline int generic_NCR5380_pwrite(struct NCR5380_hostdata *hostdata, static inline int generic_NCR5380_pwrite(struct NCR5380_hostdata *hostdata,
...@@ -656,9 +654,7 @@ static int generic_NCR5380_dma_residual(struct NCR5380_hostdata *hostdata) ...@@ -656,9 +654,7 @@ static int generic_NCR5380_dma_residual(struct NCR5380_hostdata *hostdata)
return hostdata->pdma_residual; return hostdata->pdma_residual;
} }
/* /* Include the core driver code. */
* Include the NCR5380 core code that we build our driver around
*/
#include "NCR5380.c" #include "NCR5380.c"
...@@ -679,7 +675,6 @@ static struct scsi_host_template driver_template = { ...@@ -679,7 +675,6 @@ static struct scsi_host_template driver_template = {
.max_sectors = 128, .max_sectors = 128,
}; };
static int generic_NCR5380_isa_match(struct device *pdev, unsigned int ndev) static int generic_NCR5380_isa_match(struct device *pdev, unsigned int ndev)
{ {
int ret = generic_NCR5380_init_one(&driver_template, pdev, base[ndev], int ret = generic_NCR5380_init_one(&driver_template, pdev, base[ndev],
......
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