SRU request for LP#204762

Tim Gardner tim.gardner at canonical.com
Wed May 7 16:58:49 UTC 2008


Stefan Bader wrote:
> https://bugs.launchpad.net/ubuntu/+bug/204762
> 
> SRU Justification
> 
> Impact: Regression for DRI and Intel 945GM
> 
> Fix description: Simple patch that adds an ID to a macro.
> 
> Testcase: Starting X with Intel 945GM card gives DRI error messages.
> 
> commit 3bf48468fe84468a148e4f19465e0a725c0f977b
> Author: Jesse Barnes <jbarnes at virtuousgeek.org>
> Date:   Sun Apr 6 11:55:04 2008 -0700
> 
>     fix IS_I9XX macro in i915 DRM driver
> 
>     Now that we're mapping registers in the DRM driver at load time, the
>     driver actually checks the PCI ID, so we need to make sure the macros
>     have all the right bits (and longer term use the DRM headers as the sole
>     copy of the PCI & register definitions).
> 
>     This patch adds 945GME support to the DRM headers, fixing a regression
>     reported in http://bugzilla.kernel.org/show_bug.cgi?id=10395.
> 
>     Tested-by:  Alexander Oltu <alexander at all-2.com>
>     Signed-off-by:  Jesse Barnes <jesse.barnes at intel.com>
>     Signed-off-by: Linus Torvalds <torvalds at linux-foundation.org>
> 
> diff --git a/drivers/char/drm/i915_drv.h b/drivers/char/drm/i915_drv.h
> index c10d128..675d88b 100644
> --- a/drivers/char/drm/i915_drv.h
> +++ b/drivers/char/drm/i915_drv.h
> @@ -1092,8 +1092,8 @@ extern int i915_wait_ring(struct drm_device * dev,
> int n,
>  #define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device
> == 0x25
>  #define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
>  #define IS_I945G(dev) ((dev)->pci_device == 0x2772)
> -#define IS_I945GM(dev) ((dev)->pci_device == 0x27A2)
> -
> +#define IS_I945GM(dev) ((dev)->pci_device == 0x27A2 ||\
> +                       (dev)->pci_device == 0x27AE)
>  #define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
>                        (dev)->pci_device == 0x2982 || \
>                        (dev)->pci_device == 0x2992 || \
> 

ACK

-- 
Tim Gardner tim.gardner at ubuntu.com




More information about the kernel-team mailing list