drm/i915: select framebuffer support automatically
authorIngo Molnar <mingo@elte.hu>
Thu, 5 Feb 2009 15:03:34 +0000 (16:03 +0100)
committerDave Airlie <airlied@linux.ie>
Sun, 8 Feb 2009 11:53:05 +0000 (21:53 +1000)
commitd2f59357700487a8b944f4f7777d1e97cf5ea2ed
treee9290f53d6c3eb9b9b8361e94d8b85e9c2278b38
parent9880b7a527ffbb52f65c2de0a8d4eea86e24775e
drm/i915: select framebuffer support automatically

Migration helper.

The i915 driver recently added a 'depends on FB' rule to its
Kconfig entry - which silently turns off DRM_I915 if someone
has a working config but no CONFIG_FB selected, and upgrades
to the latest upstream kernel.

Norbert Preining reported this problem:

   Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=12599
   Subject     : dri /dev node disappeared with 2.6.29-rc1

So change it to "select FB", which auto-selects framebuffer
support. This way the driver keeps working, regardless of
whether FB was enabled before or not.

Kconfig select's of interactive options can be problematic to
dependencies and can cause build breakages - but in this case
it's safe because it's a leaf entry with no dependencies of its
own.

( There is some minor circular dependency fallout as FB_I810
  and FB_INTEL also used 'depends on FB' constructs - update
  those to "select FB" too. )

Reported-by: Norbert Preining <preining@logic.at>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Dave Airlie <airlied@linux.ie>
drivers/gpu/drm/Kconfig
drivers/video/Kconfig