Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 325805 | Differences between
and this patch

Collapse All | Expand All

(-)a/drivers/message/fusion/Kconfig (+1 lines)
Lines 59-64 config FUSION_SAS Link Here
59
	  LSISAS1064E
59
	  LSISAS1064E
60
	  LSISAS1068E
60
	  LSISAS1068E
61
	  LSISAS1078
61
	  LSISAS1078
62
	  LSISAS8208ELP
62
63
63
config FUSION_MAX_SGE
64
config FUSION_MAX_SGE
64
	int "Maximum number of scatter gather entries (16 - 128)"
65
	int "Maximum number of scatter gather entries (16 - 128)"
(-)a/drivers/message/fusion/lsi/mpi_cnfg.h (+1 lines)
Lines 584-589 typedef struct _MSG_CONFIG_REPLY Link Here
584
#define MPI_MANUFACTPAGE_DEVID_SAS1068              (0x0054)
584
#define MPI_MANUFACTPAGE_DEVID_SAS1068              (0x0054)
585
#define MPI_MANUFACTPAGE_DEVID_SAS1068E             (0x0058)
585
#define MPI_MANUFACTPAGE_DEVID_SAS1068E             (0x0058)
586
#define MPI_MANUFACTPAGE_DEVID_SAS1078              (0x0062)
586
#define MPI_MANUFACTPAGE_DEVID_SAS1078              (0x0062)
587
#define MPI_MANUFACTPAGE_DEVID_SAS8208ELP           (0x0059)
587
588
588
589
589
typedef struct _CONFIG_PAGE_MANUFACTURING_0
590
typedef struct _CONFIG_PAGE_MANUFACTURING_0
(-)a/drivers/message/fusion/mptbase.c (+2 lines)
Lines 1525-1530 mpt_get_product_name(u16 vendor, u16 dev Link Here
1525
		}
1525
		}
1526
		break;
1526
		break;
1527
	case MPI_MANUFACTPAGE_DEVID_SAS1068E:
1527
	case MPI_MANUFACTPAGE_DEVID_SAS1068E:
1528
	case MPI_MANUFACTPAGE_DEVID_SAS8208ELP:
1528
		switch (revision)
1529
		switch (revision)
1529
		{
1530
		{
1530
		case 0x00:
1531
		case 0x00:
Lines 1889-1894 mpt_attach(struct pci_dev *pdev, const s Link Here
1889
	case MPI_MANUFACTPAGE_DEVID_SAS1064E:
1890
	case MPI_MANUFACTPAGE_DEVID_SAS1064E:
1890
	case MPI_MANUFACTPAGE_DEVID_SAS1068E:
1891
	case MPI_MANUFACTPAGE_DEVID_SAS1068E:
1891
	case MPI_MANUFACTPAGE_DEVID_SAS1078:
1892
	case MPI_MANUFACTPAGE_DEVID_SAS1078:
1893
	case MPI_MANUFACTPAGE_DEVID_SAS8208ELP:
1892
		ioc->bus_type = SAS;
1894
		ioc->bus_type = SAS;
1893
		break;
1895
		break;
1894
	}
1896
	}
(-)a/drivers/message/fusion/mptsas.c (+2 lines)
Lines 4903-4908 static struct pci_device_id mptsas_pci_t Link Here
4903
		PCI_ANY_ID, PCI_ANY_ID },
4903
		PCI_ANY_ID, PCI_ANY_ID },
4904
	{ PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVID_SAS1078,
4904
	{ PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVID_SAS1078,
4905
		PCI_ANY_ID, PCI_ANY_ID },
4905
		PCI_ANY_ID, PCI_ANY_ID },
4906
	{ PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVID_SAS8208ELP,
4907
		PCI_ANY_ID, PCI_ANY_ID },
4906
	{0}	/* Terminating entry */
4908
	{0}	/* Terminating entry */
4907
};
4909
};
4908
MODULE_DEVICE_TABLE(pci, mptsas_pci_table);
4910
MODULE_DEVICE_TABLE(pci, mptsas_pci_table);

Return to bug 325805