summaryrefslogtreecommitdiffstats
path: root/src/drivers
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-08-26 16:47:33 +0200
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2023-08-28 03:09:49 +0000
commit3c1a1093d3c348ef4829c72ebc11c87f8ce8b29b (patch)
tree48dc7cb73b89b38c685b1021e16046864b2c7da5 /src/drivers
parent3467704cd874c59ee8e380edd3b7a59449f6fbed (diff)
downloadcoreboot-3c1a1093d3c348ef4829c72ebc11c87f8ce8b29b.tar.gz
coreboot-3c1a1093d3c348ef4829c72ebc11c87f8ce8b29b.tar.bz2
coreboot-3c1a1093d3c348ef4829c72ebc11c87f8ce8b29b.zip
drivers/lenovo/wacom: Remove space between function name and '('
Change-Id: Idc38c759489976cbdf51d9c4bb950ef6d470b93a Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77502 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/lenovo/wacom.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/drivers/lenovo/wacom.c b/src/drivers/lenovo/wacom.c
index 0d3b433e7293..d3c4652e473c 100644
--- a/src/drivers/lenovo/wacom.c
+++ b/src/drivers/lenovo/wacom.c
@@ -35,25 +35,25 @@ drivers_lenovo_is_wacom_present(void)
return result;
if (CONFIG(DIGITIZER_PRESENT)) {
- printk (BIOS_INFO, "Digitizer state forced as present\n");
+ printk(BIOS_INFO, "Digitizer state forced as present\n");
return (result = 1);
}
if (CONFIG(DIGITIZER_ABSENT)) {
- printk (BIOS_INFO, "Digitizer state forced as absent\n");
+ printk(BIOS_INFO, "Digitizer state forced as absent\n");
return (result = 0);
}
superio = dev_find_slot_pnp (0x164e, 3);
if (!superio) {
- printk (BIOS_INFO, "No Super I/O, skipping wacom\n");
+ printk(BIOS_INFO, "No Super I/O, skipping wacom\n");
return (result = 0);
}
/* Probe ID. */
sioid = pnp_read_config(superio, 0x20);
if (sioid == 0xff) {
- printk (BIOS_INFO, "Super I/O probe failed, skipping wacom\n");
+ printk(BIOS_INFO, "Super I/O probe failed, skipping wacom\n");
return (result = 0);
}
@@ -63,10 +63,10 @@ drivers_lenovo_is_wacom_present(void)
printk (BIOS_DEBUG, "Lenovo P/N is %s\n", pn);
for (i = 0; i < ARRAY_SIZE (tablet_numbers); i++)
if (memcmp (tablet_numbers[i], pn, 4) == 0) {
- printk (BIOS_DEBUG, "Lenovo P/N %s is a tablet\n", pn);
+ printk(BIOS_DEBUG, "Lenovo P/N %s is a tablet\n", pn);
return (result = 1);
}
- printk (BIOS_DEBUG, "Lenovo P/N %s is not a tablet\n", pn);
+ printk(BIOS_DEBUG, "Lenovo P/N %s is not a tablet\n", pn);
return (result = 0);
}