nouveau: support backlight only when kernel does

Loading nouveau.ko would fail with unknown symbols, if the backlight
class device support is not provided in the kernel. Let's make the
backlight support dependant on the kernel configuration.

This is a bit ugly, the proper way would be to check for the config in
Makefile.kernel whether to build nouveau_backlight.o at all, and if not,
nouveau_drv.h should provide the stubs.

Signed-off-by: Pekka Paalanen <pq@iki.fi>
main
Pekka Paalanen 2009-02-18 22:46:40 +02:00
parent 25c60cfeca
commit 6a31b445fa
1 changed files with 16 additions and 1 deletions

View File

@ -37,6 +37,8 @@
#include "nouveau_drm.h"
#include "nouveau_reg.h"
#ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
static int nv40_get_intensity(struct backlight_device *bd)
{
struct drm_device *dev = bl_get_data(bd);
@ -157,4 +159,17 @@ void nouveau_backlight_exit(struct drm_device *dev)
if (dev_priv->backlight)
backlight_device_unregister(dev_priv->backlight);
}
}
#else /* CONFIG_BACKLIGHT_CLASS_DEVICE not set */
int nouveau_backlight_init(struct drm_device *dev)
{
(void)dev;
return 0;
}
void nouveau_backlight_exit(struct drm_device *dev)
{
(void)dev;
}
#endif /* CONFIG_BACKLIGHT_CLASS_DEVICE not set */