diff options
author | Finn Thain <fthain@telegraphics.com.au> | 2014-11-12 08:11:54 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-11-20 11:11:06 +0300 |
commit | 997acab7d593913eaa0606ff257079efcfcb146d (patch) | |
tree | 239997e829da105725a82d12d981c2ae9b6d4189 /drivers/scsi/dmx3191d.c | |
parent | 76f13b9321ec8f9550cd1557ed28ac6ae91e612c (diff) | |
download | linux-997acab7d593913eaa0606ff257079efcfcb146d.tar.xz |
ncr5380: Remove redundant AUTOSENSE macro
Every NCR5380 driver sets AUTOSENSE so it need not be optional (and the
mid-layer expects it). Remove this redundant macro to improve readability.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Tested-by: Michael Schmitz <schmitzmic@gmail.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/dmx3191d.c')
-rw-r--r-- | drivers/scsi/dmx3191d.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/dmx3191d.c b/drivers/scsi/dmx3191d.c index 6d534b9ffc91..5101328656b8 100644 --- a/drivers/scsi/dmx3191d.c +++ b/drivers/scsi/dmx3191d.c @@ -33,7 +33,6 @@ /* * Definitions for the generic 5380 driver. */ -#define AUTOSENSE #define NCR5380_read(reg) inb(port + reg) #define NCR5380_write(reg, value) outb(value, port + reg) |