drivers/pc80/vga/vga_io: Remove unnecessary parentheses

Parentheses are not required.

Change-Id: Iad1f766a3eb569af39030e43365e8a0a609f5944
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77706
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
Elyes Haouas 2023-09-06 20:00:20 +02:00
parent db3e16e73c
commit cef239675b
1 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ unsigned char
vga_sr_read(unsigned char index)
{
outb(index, VGA_SR_INDEX);
return (inb(VGA_SR_VALUE));
return inb(VGA_SR_VALUE);
}
void
@ -118,7 +118,7 @@ unsigned char
vga_cr_read(unsigned char index)
{
outb(index, VGA_CR_INDEX);
return (inb(VGA_CR_VALUE));
return inb(VGA_CR_VALUE);
}
void
@ -182,7 +182,7 @@ unsigned char
vga_gr_read(unsigned char index)
{
outb(index, VGA_GR_INDEX);
return (inb(VGA_GR_VALUE));
return inb(VGA_GR_VALUE);
}
void