Re: [Intel-gfx] [PATCH 02/10] drm/i915/lvds: Introduce intel_lvds_connector

2012-10-19 Thread Jesse Barnes
On Fri, 19 Oct 2012 14:51:44 +0300 Jani Nikula wrote: > Introduce a local structure to move LVDS specific information away from the > drm_i915_private and onto the LVDS connector. > > Based on earlier work by Chris Wilson > > CC: Chris Wilson > Signed-off-by: Jani Nikula > --- > drivers/gpu

[Intel-gfx] [PATCH 02/10] drm/i915/lvds: Introduce intel_lvds_connector

2012-10-19 Thread Jani Nikula
Introduce a local structure to move LVDS specific information away from the drm_i915_private and onto the LVDS connector. Based on earlier work by Chris Wilson CC: Chris Wilson Signed-off-by: Jani Nikula --- drivers/gpu/drm/i915/intel_lvds.c | 17 ++--- 1 file changed, 14 insert

Re: [Intel-gfx] [PATCH 02/10] drm/i915/lvds: Introduce intel_lvds_connector

2011-04-22 Thread Chris Wilson
On Fri, 22 Apr 2011 10:50:47 -0700, Ben Widawsky wrote: > How about to save some eyestrain, using some macro helpers? > > struct intel_lvds_connector { > struct intel_connector base; > #define drm_base \ > base.base > #define drm_dev \ > drm_base.dev > #define drm_funcs \ >

Re: [Intel-gfx] [PATCH 02/10] drm/i915/lvds: Introduce intel_lvds_connector

2011-04-22 Thread Ben Widawsky
On Fri, Apr 22, 2011 at 10:19:10AM +0100, Chris Wilson wrote: > Introduce a local structure to move LVDS specific information away from > the drm_i915_private and onto the LVDS connector. > > Signed-off-by: Chris Wilson > --- > drivers/gpu/drm/i915/intel_lvds.c | 31 +--

Re: [Intel-gfx] [PATCH 02/10] drm/i915/lvds: Introduce intel_lvds_connector

2011-04-22 Thread Jesse Barnes
On Fri, 22 Apr 2011 10:19:10 +0100 Chris Wilson wrote: > Introduce a local structure to move LVDS specific information away from > the drm_i915_private and onto the LVDS connector. > > Signed-off-by: Chris Wilson > --- Nice to split this out. Acked-by: Jesse Barnes -- Jesse Barnes, Intel O

[Intel-gfx] [PATCH 02/10] drm/i915/lvds: Introduce intel_lvds_connector

2011-04-22 Thread Chris Wilson
Introduce a local structure to move LVDS specific information away from the drm_i915_private and onto the LVDS connector. Signed-off-by: Chris Wilson --- drivers/gpu/drm/i915/intel_lvds.c | 31 +-- 1 files changed, 21 insertions(+), 10 deletions(-) diff --git a/dri