|
@@ -2784,6 +2784,16 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x342e, vtd_mask_spec_errors);
|
|
|
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x3c28, vtd_mask_spec_errors);
|
|
|
#endif
|
|
|
|
|
|
+static void __devinit fixup_ti816x_class(struct pci_dev* dev)
|
|
|
+{
|
|
|
+ /* TI 816x devices do not have class code set when in PCIe boot mode */
|
|
|
+ if (dev->class == PCI_CLASS_NOT_DEFINED) {
|
|
|
+ dev_info(&dev->dev, "Setting PCI class for 816x PCIe device\n");
|
|
|
+ dev->class = PCI_CLASS_MULTIMEDIA_VIDEO;
|
|
|
+ }
|
|
|
+}
|
|
|
+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_TI, 0xb800, fixup_ti816x_class);
|
|
|
+
|
|
|
static void pci_do_fixups(struct pci_dev *dev, struct pci_fixup *f,
|
|
|
struct pci_fixup *end)
|
|
|
{
|