video: fbdev: aty128fb: use true and false for boolean values
Assign true or false to boolean variables instead of an integer value. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Cc: Paul Mackerras <paulus@samba.org> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
e393cb1cd9
commit
cfb810f859
|
@ -1716,7 +1716,7 @@ static int aty128fb_setup(char *options)
|
|||
continue;
|
||||
}
|
||||
if(!strncmp(this_opt, "nomtrr", 6)) {
|
||||
mtrr = 0;
|
||||
mtrr = false;
|
||||
continue;
|
||||
}
|
||||
#ifdef CONFIG_PPC_PMAC
|
||||
|
|
Loading…
Reference in New Issue