aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/usb
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-07-22 20:36:20 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-26 21:18:16 +0000
commitaf56a7791565de4c3dec66b4cc6a8b152bba014c (patch)
treeacbc3f7fe5c312b57550c67147a27123c59e6502 /src/drivers/usb
parent89739baf531e26dc81420df4f943bf8c163a0c0d (diff)
src: Remove whitespace between 'sizeof' and '('
Change-Id: Iaf22dc1986427e8aa4521b0e9b40fafa5a29dbbd Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43720 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/drivers/usb')
-rw-r--r--src/drivers/usb/ehci_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/usb/ehci_debug.c b/src/drivers/usb/ehci_debug.c
index 07d87ae6c5..5998172b87 100644
--- a/src/drivers/usb/ehci_debug.c
+++ b/src/drivers/usb/ehci_debug.c
@@ -436,7 +436,7 @@ static int usbdebug_init_(uintptr_t ehci_bar, unsigned int offset, struct ehci_d
int playtimes = 3;
/* Keep all endpoints disabled before any printk() call. */
- memset(info, 0, sizeof (*info));
+ memset(info, 0, sizeof(*info));
info->ehci_base = ehci_bar;
info->ehci_debug = ehci_bar + offset;
info->ep_pipe[0].status |= DBGP_EP_NOT_PRESENT;