diff options
author | James Simmons <jsimmons@infradead.org> | 2010-04-07 11:06:21 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-04-07 20:09:50 -0400 |
commit | b1f201980eb4a7a59277a13cf18acdbb46167ad5 (patch) | |
tree | 7c10f2ed19e731db08db035686077e64d953a1aa /drivers/gpu/drm/i915 | |
parent | 4abe35204af82a018ca3ce6db4102aa09719698e (diff) |
drm/fb: remove drm_fb_helper_setcolreg
This patch is against the drm-fbdevfix1 branch. It removes the
drm_fb_helper_setcolreg function. The reason is that fb_setcolreg is only
used in the case where fb_setcmap is called and no fb_ops->fb_setcmap is
used. In the drm case we always need a fb_setcmap hook to handle multiple
crtcs so we don't need a fb_setcolreg hook. Please apply.
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/i915')
-rw-r--r-- | drivers/gpu/drm/i915/intel_fb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_fb.c b/drivers/gpu/drm/i915/intel_fb.c index cc726ff0a02d..cbb8cb7144c6 100644 --- a/drivers/gpu/drm/i915/intel_fb.c +++ b/drivers/gpu/drm/i915/intel_fb.c | |||
@@ -56,7 +56,6 @@ static struct fb_ops intelfb_ops = { | |||
56 | .owner = THIS_MODULE, | 56 | .owner = THIS_MODULE, |
57 | .fb_check_var = drm_fb_helper_check_var, | 57 | .fb_check_var = drm_fb_helper_check_var, |
58 | .fb_set_par = drm_fb_helper_set_par, | 58 | .fb_set_par = drm_fb_helper_set_par, |
59 | .fb_setcolreg = drm_fb_helper_setcolreg, | ||
60 | .fb_fillrect = cfb_fillrect, | 59 | .fb_fillrect = cfb_fillrect, |
61 | .fb_copyarea = cfb_copyarea, | 60 | .fb_copyarea = cfb_copyarea, |
62 | .fb_imageblit = cfb_imageblit, | 61 | .fb_imageblit = cfb_imageblit, |