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:
Gustavo A. R. Silva 2018-03-28 16:34:27 +02:00 committed by Bartlomiej Zolnierkiewicz
parent e393cb1cd9
commit cfb810f859
1 changed files with 1 additions and 1 deletions

View File

@ -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