aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip J Kelleher <pjk1939@linux.vnet.ibm.com>2013-06-18 15:43:58 -0400
committerJens Axboe <axboe@kernel.dk>2013-06-19 07:52:09 -0400
commitf730e3dc6dc4698d55fd9bf6de33a5436900e9bd (patch)
tree6da8eb285089fea91a9b98e0e8648b6ae02c9412
parentfb065cd9e0058551b08d6d32ff0494848c9e213d (diff)
rsxx: Changing the adapter name to the official name.
Changing the adapter name from FlashSystem-80 to the official name: Flash Adapter 900GB Full Height. Signed-off-by: Philip J Kelleher <pjk1939@linux.vnet.ibm.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r--MAINTAINERS2
-rw-r--r--drivers/block/Kconfig4
-rw-r--r--drivers/block/rsxx/core.c10
3 files changed, 8 insertions, 8 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index 3d7782b9f90d..75e52e341a67 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3297,7 +3297,7 @@ F: Documentation/firmware_class/
3297F: drivers/base/firmware*.c 3297F: drivers/base/firmware*.c
3298F: include/linux/firmware.h 3298F: include/linux/firmware.h
3299 3299
3300FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card) 3300FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3301M: Joshua Morris <josh.h.morris@us.ibm.com> 3301M: Joshua Morris <josh.h.morris@us.ibm.com>
3302M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> 3302M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3303S: Maintained 3303S: Maintained
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig
index b81ddfea1da0..e07a5fd58ad7 100644
--- a/drivers/block/Kconfig
+++ b/drivers/block/Kconfig
@@ -532,11 +532,11 @@ config BLK_DEV_RBD
532 If unsure, say N. 532 If unsure, say N.
533 533
534config BLK_DEV_RSXX 534config BLK_DEV_RSXX
535 tristate "IBM FlashSystem 70/80 PCIe SSD Device Driver" 535 tristate "IBM Flash Adapter 900GB Full Height PCIe Device Driver"
536 depends on PCI 536 depends on PCI
537 help 537 help
538 Device driver for IBM's high speed PCIe SSD 538 Device driver for IBM's high speed PCIe SSD
539 storage devices: FlashSystem-70 and FlashSystem-80. 539 storage device: Flash Adapter 900GB Full Height.
540 540
541 To compile this driver as a module, choose M here: the 541 To compile this driver as a module, choose M here: the
542 module will be called rsxx. 542 module will be called rsxx.
diff --git a/drivers/block/rsxx/core.c b/drivers/block/rsxx/core.c
index 0f1be41ccfa8..bd763f426774 100644
--- a/drivers/block/rsxx/core.c
+++ b/drivers/block/rsxx/core.c
@@ -41,7 +41,7 @@
41#define NO_LEGACY 0 41#define NO_LEGACY 0
42#define SYNC_START_TIMEOUT (10 * 60) /* 10 minutes */ 42#define SYNC_START_TIMEOUT (10 * 60) /* 10 minutes */
43 43
44MODULE_DESCRIPTION("IBM FlashSystem 70/80 PCIe SSD Device Driver"); 44MODULE_DESCRIPTION("IBM Flash Adapter 900GB Full Height Device Driver");
45MODULE_AUTHOR("Joshua Morris/Philip Kelleher, IBM"); 45MODULE_AUTHOR("Joshua Morris/Philip Kelleher, IBM");
46MODULE_LICENSE("GPL"); 46MODULE_LICENSE("GPL");
47MODULE_VERSION(DRIVER_VERSION); 47MODULE_VERSION(DRIVER_VERSION);
@@ -336,7 +336,7 @@ static int rsxx_eeh_frozen(struct pci_dev *dev)
336 int i; 336 int i;
337 int st; 337 int st;
338 338
339 dev_warn(&dev->dev, "IBM FlashSystem PCI: preparing for slot reset.\n"); 339 dev_warn(&dev->dev, "IBM Flash Adapter PCI: preparing for slot reset.\n");
340 340
341 card->eeh_state = 1; 341 card->eeh_state = 1;
342 rsxx_mask_interrupts(card); 342 rsxx_mask_interrupts(card);
@@ -376,7 +376,7 @@ static void rsxx_eeh_failure(struct pci_dev *dev)
376 int i; 376 int i;
377 int cnt = 0; 377 int cnt = 0;
378 378
379 dev_err(&dev->dev, "IBM FlashSystem PCI: disabling failed card.\n"); 379 dev_err(&dev->dev, "IBM Flash Adapter PCI: disabling failed card.\n");
380 380
381 card->eeh_state = 1; 381 card->eeh_state = 1;
382 card->halt = 1; 382 card->halt = 1;
@@ -450,7 +450,7 @@ static pci_ers_result_t rsxx_slot_reset(struct pci_dev *dev)
450 int st; 450 int st;
451 451
452 dev_warn(&dev->dev, 452 dev_warn(&dev->dev,
453 "IBM FlashSystem PCI: recovering from slot reset.\n"); 453 "IBM Flash Adapter PCI: recovering from slot reset.\n");
454 454
455 st = pci_enable_device(dev); 455 st = pci_enable_device(dev);
456 if (st) 456 if (st)
@@ -503,7 +503,7 @@ static pci_ers_result_t rsxx_slot_reset(struct pci_dev *dev)
503 &card->ctrl[i].issue_dma_work); 503 &card->ctrl[i].issue_dma_work);
504 } 504 }
505 505
506 dev_info(&dev->dev, "IBM FlashSystem PCI: recovery complete.\n"); 506 dev_info(&dev->dev, "IBM Flash Adapter PCI: recovery complete.\n");
507 507
508 return PCI_ERS_RESULT_RECOVERED; 508 return PCI_ERS_RESULT_RECOVERED;
509 509