diff options
author | Asai Thambi SP <asamymuthupa@micron.com> | 2015-05-11 15:49:28 -0700 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-06-16 08:24:44 -0600 |
commit | a7806fadc5f68b1551e4fa85f5e655c0448727f1 (patch) | |
tree | 053e0fbb2f723caaded6a344cf412910ed8a2ebf /drivers/block/mtip32xx/mtip32xx.h | |
parent | 02b48265e7437bfe153af16337b14ee74f00905f (diff) | |
download | blackbird-op-linux-a7806fadc5f68b1551e4fa85f5e655c0448727f1.tar.gz blackbird-op-linux-a7806fadc5f68b1551e4fa85f5e655c0448727f1.zip |
mtip32xx: remove unused variable 'port->allocated'
Remove unused variable 'port->allocated'
Signed-off-by: Selvan Mani <smani@micron.com>
Signed-off-by: Asai Thambi S P <asamymuthupa@micron.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/mtip32xx/mtip32xx.h')
-rw-r--r-- | drivers/block/mtip32xx/mtip32xx.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/block/mtip32xx/mtip32xx.h b/drivers/block/mtip32xx/mtip32xx.h index ba1b31ee22ec..d7a545974c78 100644 --- a/drivers/block/mtip32xx/mtip32xx.h +++ b/drivers/block/mtip32xx/mtip32xx.h @@ -412,19 +412,13 @@ struct mtip_port { * by the DMA when the driver issues internal commands. */ dma_addr_t sector_buffer_dma; - /* - * Bit significant, used to determine if a command slot has - * been allocated. i.e. the slot is in use. Bits are cleared - * when the command slot and all associated data structures - * are no longer needed. - */ + u16 *log_buf; dma_addr_t log_buf_dma; u8 *smart_buf; dma_addr_t smart_buf_dma; - unsigned long allocated[SLOTBITS_IN_LONGS]; /* * used to queue commands when an internal command is in progress * or error handling is active |