]> asedeno.scripts.mit.edu Git - linux.git/commit
drm: gma500: fix logic error
authorArnd Bergmann <arnd@arndb.de>
Tue, 5 Sep 2017 07:47:26 +0000 (09:47 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 6 Sep 2017 06:39:55 +0000 (08:39 +0200)
commit67a3b63a54cbe18944191f43d644686731cf30c7
tree7251bfe44e045528b3820d1e8a19d74027518ad9
parentff58a15a502a900c35ff2f20182249b65719d6d7
drm: gma500: fix logic error

gcc-8 points out a condition that almost certainly doesn't
do what the author had in mind:

drivers/gpu/drm/gma500/mdfld_intel_display.c: In function 'mdfldWaitForPipeEnable':
drivers/gpu/drm/gma500/mdfld_intel_display.c:102:37: error: bitwise comparison always evaluates to false [-Werror=tautological-compare]

This changes it to a simple bit mask operation to check
whether the bit is set.

Fixes: 026abc333205 ("gma500: initial medfield merge")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20170905074741.435324-1-arnd@arndb.de
drivers/gpu/drm/gma500/mdfld_intel_display.c