Hi all, having found some issues with the current tmscsim driver I looked at the code and found is really awkward to clean up. Seeing that the am53c974 chip is actually based on the 'ESP' chip design I've re-implemented it based on the common esp_scsi routines. This new driver (cunningly named 'am53c974') provides all features found on the tmscsim driver, with the goal of obsoleting the old tmscsim driver. Tested with Tekram DC390 and qemu esp-scsi. Changes to v1: - Include suggestions from Paolo Bonzini - Remove the tmscsim driver - Update MAINTAINERS file Changes to v2: - Include review from David Miller - Include review from Christoph Hellwig - Add Reviewed-by/Acked-by tags where applicable Hannes Reinecke (11): esp_scsi: spellcheck 'driver' esp_scsi: make number of tags configurable esp_scsi: convert to dev_printk esp_scsi: debug event and command esp_scsi: read status registers esp_scsi: use FIFO for command submission scsi: add 'am53c974' driver am53c974: BLAST residual handling esp: correctly detect am53c974 esp: enable CONFIG2_FENAB for am53c974 Replace tmscsim by am53c974 Paolo Bonzini (1): esp_scsi: let DMA driver provide a config2 value MAINTAINERS | 7 +- drivers/scsi/Kconfig | 8 +- drivers/scsi/Makefile | 2 +- drivers/scsi/am53c974.c | 586 +++++++++++ drivers/scsi/esp_scsi.c | 411 +++++--- drivers/scsi/esp_scsi.h | 22 +- drivers/scsi/tmscsim.c | 2626 ----------------------------------------------- drivers/scsi/tmscsim.h | 549 ---------- 8 files changed, 859 insertions(+), 3352 deletions(-) create mode 100644 drivers/scsi/am53c974.c delete mode 100644 drivers/scsi/tmscsim.c delete mode 100644 drivers/scsi/tmscsim.h -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html