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 коммит произвёл Bartlomiej Zolnierkiewicz
Родитель e393cb1cd9
Коммит cfb810f859
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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