Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3e74d02 authored by Eric Anholt's avatar Eric Anholt Committed by Dave Airlie
Browse files

i915: Don't whine when pci_enable_msi() fails.



This probably just means the chipset doesn't support MSI, which is fine.

Signed-off-by: default avatarEric Anholt <eric@anholt.net>
Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent 6a47baa6
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -852,8 +852,7 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
	 * be lost or delayed
	 */
	if (!IS_I945G(dev) && !IS_I945GM(dev) && !IS_I965GM(dev))
		if (pci_enable_msi(dev->pdev))
			DRM_ERROR("failed to enable MSI\n");
		pci_enable_msi(dev->pdev);

	intel_opregion_init(dev);