Message ID | 1409937660-30544-1-git-send-email-m-karicheri2@ti.com |
---|---|
State | Accepted |
Commit | c5edfff9db6f4d2c35c802acb4abe0df178becee |
Headers | show |
On Fri, Sep 05, 2014 at 01:21:00PM -0400, Murali Karicheri wrote: > Keystone K2E EVM uses Marvel 0x9182 controller. This requires support > for the ID in the ahci driver. > > Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> Applied to libata/for-3.17-fixes w/ stable cc'd. Thanks.
On 09/05/2014 01:53 PM, Tejun Heo wrote: > On Fri, Sep 05, 2014 at 01:21:00PM -0400, Murali Karicheri wrote: >> Keystone K2E EVM uses Marvel 0x9182 controller. This requires support >> for the ID in the ahci driver. >> >> Signed-off-by: Murali Karicheri<m-karicheri2@ti.com> > > Applied to libata/for-3.17-fixes w/ stable cc'd. > > Thanks. > Tejun, Thanks Murali -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index a29f801..02a415e 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -442,6 +442,8 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x917a), .driver_data = board_ahci_yes_fbs }, /* 88se9172 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x9172), + .driver_data = board_ahci_yes_fbs }, /* 88se9182 */ + { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x9182), .driver_data = board_ahci_yes_fbs }, /* 88se9172 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x9192), .driver_data = board_ahci_yes_fbs }, /* 88se9172 on some Gigabyte */
Keystone K2E EVM uses Marvel 0x9182 controller. This requires support for the ID in the ahci driver. Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> CC: Tejun Heo <tj@kernel.org> CC: Santosh Shilimkar <santosh.shilimkar@ti.com> --- - Resending with some description in the commit log drivers/ata/ahci.c | 2 ++ 1 file changed, 2 insertions(+)