diff options
Diffstat (limited to 'drivers/video/fbdev')
| -rw-r--r-- | drivers/video/fbdev/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/video/fbdev/core/fbsysfs.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index e413f54208f4..5d85965767e3 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig | |||
| @@ -184,7 +184,7 @@ config FB_MACMODES | |||
| 184 | depends on FB | 184 | depends on FB |
| 185 | 185 | ||
| 186 | config FB_BACKLIGHT | 186 | config FB_BACKLIGHT |
| 187 | bool | 187 | tristate |
| 188 | depends on FB | 188 | depends on FB |
| 189 | select BACKLIGHT_LCD_SUPPORT | 189 | select BACKLIGHT_LCD_SUPPORT |
| 190 | select BACKLIGHT_CLASS_DEVICE | 190 | select BACKLIGHT_CLASS_DEVICE |
diff --git a/drivers/video/fbdev/core/fbsysfs.c b/drivers/video/fbdev/core/fbsysfs.c index e31a182b42bf..44cca39f2b51 100644 --- a/drivers/video/fbdev/core/fbsysfs.c +++ b/drivers/video/fbdev/core/fbsysfs.c | |||
| @@ -60,7 +60,7 @@ struct fb_info *framebuffer_alloc(size_t size, struct device *dev) | |||
| 60 | info->device = dev; | 60 | info->device = dev; |
| 61 | info->fbcon_rotate_hint = -1; | 61 | info->fbcon_rotate_hint = -1; |
| 62 | 62 | ||
| 63 | #ifdef CONFIG_FB_BACKLIGHT | 63 | #if IS_ENABLED(CONFIG_FB_BACKLIGHT) |
| 64 | mutex_init(&info->bl_curve_mutex); | 64 | mutex_init(&info->bl_curve_mutex); |
| 65 | #endif | 65 | #endif |
| 66 | 66 | ||
| @@ -429,7 +429,7 @@ static ssize_t show_fbstate(struct device *device, | |||
| 429 | return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->state); | 429 | return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->state); |
| 430 | } | 430 | } |
| 431 | 431 | ||
| 432 | #ifdef CONFIG_FB_BACKLIGHT | 432 | #if IS_ENABLED(CONFIG_FB_BACKLIGHT) |
| 433 | static ssize_t store_bl_curve(struct device *device, | 433 | static ssize_t store_bl_curve(struct device *device, |
| 434 | struct device_attribute *attr, | 434 | struct device_attribute *attr, |
| 435 | const char *buf, size_t count) | 435 | const char *buf, size_t count) |
| @@ -510,7 +510,7 @@ static struct device_attribute device_attrs[] = { | |||
| 510 | __ATTR(stride, S_IRUGO, show_stride, NULL), | 510 | __ATTR(stride, S_IRUGO, show_stride, NULL), |
| 511 | __ATTR(rotate, S_IRUGO|S_IWUSR, show_rotate, store_rotate), | 511 | __ATTR(rotate, S_IRUGO|S_IWUSR, show_rotate, store_rotate), |
| 512 | __ATTR(state, S_IRUGO|S_IWUSR, show_fbstate, store_fbstate), | 512 | __ATTR(state, S_IRUGO|S_IWUSR, show_fbstate, store_fbstate), |
| 513 | #ifdef CONFIG_FB_BACKLIGHT | 513 | #if IS_ENABLED(CONFIG_FB_BACKLIGHT) |
| 514 | __ATTR(bl_curve, S_IRUGO|S_IWUSR, show_bl_curve, store_bl_curve), | 514 | __ATTR(bl_curve, S_IRUGO|S_IWUSR, show_bl_curve, store_bl_curve), |
| 515 | #endif | 515 | #endif |
| 516 | }; | 516 | }; |
| @@ -551,7 +551,7 @@ void fb_cleanup_device(struct fb_info *fb_info) | |||
| 551 | } | 551 | } |
| 552 | } | 552 | } |
| 553 | 553 | ||
| 554 | #ifdef CONFIG_FB_BACKLIGHT | 554 | #if IS_ENABLED(CONFIG_FB_BACKLIGHT) |
| 555 | /* This function generates a linear backlight curve | 555 | /* This function generates a linear backlight curve |
| 556 | * | 556 | * |
| 557 | * 0: off | 557 | * 0: off |
