* [PATCH] fix IS_I9XX macro in i915 DRM driver
@ 2008-04-06 18:55 Jesse Barnes
2008-04-06 23:51 ` Dave Airlie
0 siblings, 1 reply; 2+ messages in thread
From: Jesse Barnes @ 2008-04-06 18:55 UTC (permalink / raw)
To: LKML; +Cc: Linus Torvalds, Dave Airlie
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.
Dave, please ack asap so this will be fixed in 2.6.25 proper.
Thanks,
Jesse
Tested-by: Alexander Oltu <alexander@all-2.com>
Signed-off-by: Jesse Barnes <jesse.barnes@intel.com>
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, const char *caller);
#define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device ==
0x258a)
#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 || \
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] fix IS_I9XX macro in i915 DRM driver
2008-04-06 18:55 [PATCH] fix IS_I9XX macro in i915 DRM driver Jesse Barnes
@ 2008-04-06 23:51 ` Dave Airlie
0 siblings, 0 replies; 2+ messages in thread
From: Dave Airlie @ 2008-04-06 23:51 UTC (permalink / raw)
To: Jesse Barnes; +Cc: LKML, Linus Torvalds
> 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.
>
> Dave, please ack asap so this will be fixed in 2.6.25 proper.
>
> Thanks,
> Jesse
>
> Tested-by: Alexander Oltu <alexander@all-2.com>
> Signed-off-by: Jesse Barnes <jesse.barnes@intel.com>
Acked-by: Dave Airlie <airlied@linux.ie>
Linus please get into 2.6.25 if possible.
Dave.
>
> 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, const char *caller);
> #define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device ==
> 0x258a)
> #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 || \
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-04-06 23:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-06 18:55 [PATCH] fix IS_I9XX macro in i915 DRM driver Jesse Barnes
2008-04-06 23:51 ` Dave Airlie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®