forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
block: IBM RamSan 70/80 branding changes.
This patch includes changing the hardware branding name from IBM RamSan to IBM FlashSystem. v2 Changes include: o Removing the unnecessary IBM Vendor ID #define v1 Changes include: o Changed all references of RamSan to FlashSystem. o Changed the vendor/device IDs for the product. o Changed driver version number. o Updated the MAINTAINERS file. o Various other little things. Signed-off-by: Philip J Kelleher <[email protected]> Signed-off-by: Jens Axboe <[email protected]>
- Loading branch information
Showing
8 changed files
with
19 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3242,6 +3242,12 @@ F: Documentation/firmware_class/ | |
F: drivers/base/firmware*.c | ||
F: include/linux/firmware.h | ||
|
||
FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card) | ||
M: Joshua Morris <[email protected]> | ||
M: Philip Kelleher <[email protected]> | ||
S: Maintained | ||
F: drivers/block/rsxx/ | ||
|
||
FLOPPY DRIVER | ||
M: Jiri Kosina <[email protected]> | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | ||
|
@@ -6516,12 +6522,6 @@ S: Maintained | |
F: Documentation/blockdev/ramdisk.txt | ||
F: drivers/block/brd.c | ||
|
||
RAMSAM DRIVER (IBM RamSan 70/80 PCI SSD Flash Card) | ||
M: Joshua Morris <[email protected]> | ||
M: Philip Kelleher <[email protected]> | ||
S: Maintained | ||
F: drivers/block/rsxx/ | ||
|
||
RANDOM NUMBER DRIVER | ||
M: Theodore Ts'o" <[email protected]> | ||
S: Maintained | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
obj-$(CONFIG_BLK_DEV_RSXX) += rsxx.o | ||
rsxx-y := config.o core.o cregs.o dev.o dma.o | ||
rsxx-objs := config.o core.o cregs.o dev.o dma.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,8 +39,8 @@ | |
|
||
#define NO_LEGACY 0 | ||
|
||
MODULE_DESCRIPTION("IBM RamSan PCIe Flash SSD Device Driver"); | ||
MODULE_AUTHOR("IBM <[email protected]>"); | ||
MODULE_DESCRIPTION("IBM FlashSystem 70/80 PCIe SSD Device Driver"); | ||
MODULE_AUTHOR("Joshua Morris/Philip Kelleher, IBM"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_VERSION(DRIVER_VERSION); | ||
|
||
|
@@ -593,10 +593,8 @@ static void rsxx_pci_shutdown(struct pci_dev *dev) | |
} | ||
|
||
static DEFINE_PCI_DEVICE_TABLE(rsxx_pci_ids) = { | ||
{PCI_DEVICE(PCI_VENDOR_ID_TMS_IBM, PCI_DEVICE_ID_RS70_FLASH)}, | ||
{PCI_DEVICE(PCI_VENDOR_ID_TMS_IBM, PCI_DEVICE_ID_RS70D_FLASH)}, | ||
{PCI_DEVICE(PCI_VENDOR_ID_TMS_IBM, PCI_DEVICE_ID_RS80_FLASH)}, | ||
{PCI_DEVICE(PCI_VENDOR_ID_TMS_IBM, PCI_DEVICE_ID_RS81_FLASH)}, | ||
{PCI_DEVICE(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_FS70_FLASH)}, | ||
{PCI_DEVICE(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_FS80_FLASH)}, | ||
{0,}, | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters