]> git.dujemihanovic.xyz Git - linux.git/commitdiff
drm/tinydrm: helpers: Properly fix backlight dependency
authorNoralf Trønnes <noralf@tronnes.org>
Thu, 23 Feb 2017 13:29:57 +0000 (14:29 +0100)
committerDave Airlie <airlied@redhat.com>
Fri, 24 Feb 2017 02:09:00 +0000 (12:09 +1000)
BACKLIGHT_CLASS_DEVICE was selected in the last version of the
tinydrm patchset to fix the backlight dependency, but the
ifdef CONFIG_BACKLIGHT_CLASS_DEVICE was forgotten. Fix that.

Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
include/drm/tinydrm/tinydrm-helpers.h

index 78175fe6ab228d7d8b17464e6cf8104ded706958..9b9b6cfe3ba526b1c9e0d49adb28813a201a9764 100644 (file)
@@ -44,28 +44,9 @@ void tinydrm_xrgb8888_to_rgb565(u16 *dst, void *vaddr,
                                struct drm_framebuffer *fb,
                                struct drm_clip_rect *clip, bool swap);
 
-#ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
 struct backlight_device *tinydrm_of_find_backlight(struct device *dev);
 int tinydrm_enable_backlight(struct backlight_device *backlight);
 int tinydrm_disable_backlight(struct backlight_device *backlight);
-#else
-static inline struct backlight_device *
-tinydrm_of_find_backlight(struct device *dev)
-{
-       return NULL;
-}
-
-static inline int tinydrm_enable_backlight(struct backlight_device *backlight)
-{
-       return 0;
-}
-
-static inline int
-tinydrm_disable_backlight(struct backlight_device *backlight)
-{
-       return 0;
-}
-#endif
 
 size_t tinydrm_spi_max_transfer_size(struct spi_device *spi, size_t max_len);
 bool tinydrm_spi_bpw_supported(struct spi_device *spi, u8 bpw);