diff options
author | Dave Airlie <airlied@redhat.com> | 2010-03-30 01:34:13 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-04-06 20:21:03 -0400 |
commit | 386516744ba45d50f42c6999151cc210cb4f96e4 (patch) | |
tree | 88e3b6aeb83040a8bd512eb7aad087e6c0fcd556 /drivers/gpu/drm/nouveau/nouveau_drv.h | |
parent | 643acacf02679befd0f98ac3c5fecb805f1c9548 (diff) |
drm/fb: fix fbdev object model + cleanup properly.
The fbdev layer in the kms code should act like a consumer of the kms services and avoid having relying on information being store in the kms core structures in order for it to work.
This patch
a) removes the info pointer/psuedo palette from the core drm_framebuffer structure and moves it to the fbdev helper layer, it also removes the core drm keeping a list of kernel kms fbdevs.
b) migrated all the fb helper functions out of the crtc helper file into the fb helper file.
c) pushed the fb probing/hotplug control into the driver
d) makes the surface sizes into a structure for ease of passing
This changes the intel/radeon/nouveau drivers to use the new helper.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_drv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index d8b559011777..93459e07e829 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h | |||
@@ -531,8 +531,6 @@ struct drm_nouveau_private { | |||
531 | atomic_t validate_sequence; | 531 | atomic_t validate_sequence; |
532 | } ttm; | 532 | } ttm; |
533 | 533 | ||
534 | struct fb_info *fbdev_info; | ||
535 | |||
536 | int fifo_alloc_count; | 534 | int fifo_alloc_count; |
537 | struct nouveau_channel *fifos[NOUVEAU_MAX_CHANNEL_NR]; | 535 | struct nouveau_channel *fifos[NOUVEAU_MAX_CHANNEL_NR]; |
538 | 536 | ||
@@ -628,6 +626,8 @@ struct drm_nouveau_private { | |||
628 | struct { | 626 | struct { |
629 | struct dentry *channel_root; | 627 | struct dentry *channel_root; |
630 | } debugfs; | 628 | } debugfs; |
629 | |||
630 | struct nouveau_fbcon_par *nfbdev; | ||
631 | }; | 631 | }; |
632 | 632 | ||
633 | static inline struct drm_nouveau_private * | 633 | static inline struct drm_nouveau_private * |