]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
drm/i915: avoid brightness overflow when doing scale
authorAaron Lu <aaron.lu@intel.com>
Fri, 2 Aug 2013 01:16:03 +0000 (09:16 +0800)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 7 Aug 2013 09:57:08 +0000 (11:57 +0200)
commit22505b82a2800bddb67908522833bef96dd15845
tree40de131f1ed5a141107afccfaf2ab7a6db0ba535
parent9dbd8febb4dbc9199fcf340b882eb930e36b65b6
drm/i915: avoid brightness overflow when doing scale

Some card's max brightness level is pretty large, e.g. on Acer Aspire
4732Z, the max level is 989910. If user space set a large enough level
then the current scale done in intel_panel_set_backlight will cause an
integer overflow and the scaled level will be mistakenly small, leaving
user with an almost black screen. This patch fixes this problem.

Signed-off-by: Aaron Lu <aaron.lu@intel.com>
[danvet: Add a comment to explain what's going on.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_panel.c