All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i915: do not read uninitialized ->dev_private
@ 2010-04-08 19:41 Luca Tettamanti
  2010-04-12 16:08 ` Eric Anholt
  0 siblings, 1 reply; 2+ messages in thread
From: Luca Tettamanti @ 2010-04-08 19:41 UTC (permalink / raw)
  To: intel-gfx; +Cc: dri-devel

->dev_private at that point is NULL and is initialied only a few lines
later.

Signed-off-by: Luca Tettamanti <kronos.it@gmail.com>
---
I'm beginnig to dive into DRM&KMS, that assignment really confused me :P

 drivers/gpu/drm/i915/i915_dma.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index a9f8589..648670d 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -1578,7 +1578,7 @@ static void i915_get_mem_freq(struct drm_device *dev)
  */
 int i915_driver_load(struct drm_device *dev, unsigned long flags)
 {
-	struct drm_i915_private *dev_priv = dev->dev_private;
+	struct drm_i915_private *dev_priv;
 	resource_size_t base, size;
 	int ret = 0, mmio_bar;
 	uint32_t agp_size, prealloc_size, prealloc_start;

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] i915: do not read uninitialized ->dev_private
  2010-04-08 19:41 [PATCH] i915: do not read uninitialized ->dev_private Luca Tettamanti
@ 2010-04-12 16:08 ` Eric Anholt
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Anholt @ 2010-04-12 16:08 UTC (permalink / raw)
  To: Luca Tettamanti, intel-gfx; +Cc: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 329 bytes --]

On Thu, 8 Apr 2010 21:41:59 +0200, Luca Tettamanti <kronos.it@gmail.com> wrote:
> ->dev_private at that point is NULL and is initialied only a few lines
> later.
> 
> Signed-off-by: Luca Tettamanti <kronos.it@gmail.com>
> ---
> I'm beginnig to dive into DRM&KMS, that assignment really confused me :P

Applied.  Thanks!

[-- Attachment #1.2: Type: application/pgp-signature, Size: 197 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-04-12 16:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-08 19:41 [PATCH] i915: do not read uninitialized ->dev_private Luca Tettamanti
2010-04-12 16:08 ` Eric Anholt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.