git: f16e38162c75 - main - Fix an indentation bug in the bcm pci driver
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 23 May 2022 17:24:43 UTC
The branch main has been updated by andrew:
URL: https://cgit.FreeBSD.org/src/commit/?id=f16e38162c75015036b1c5e220b2f82a4bd94af1
commit f16e38162c75015036b1c5e220b2f82a4bd94af1
Author: Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2022-05-23 17:24:04 +0000
Commit: Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2022-05-23 17:24:04 +0000
Fix an indentation bug in the bcm pci driver
Sponsored by: The FreeBSD Foundation
---
sys/arm/broadcom/bcm2835/bcm2838_pci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/arm/broadcom/bcm2835/bcm2838_pci.c b/sys/arm/broadcom/bcm2835/bcm2838_pci.c
index 534ff790245e..c30eb73fc1b0 100644
--- a/sys/arm/broadcom/bcm2835/bcm2838_pci.c
+++ b/sys/arm/broadcom/bcm2835/bcm2838_pci.c
@@ -546,7 +546,7 @@ bcm_pcib_msi_attach(device_t dev)
"%s,%u", bcm_name, i);
if (error != 0) {
device_printf(dev,
- "error: failed to register interrupt %d.\n", i);
+ "error: failed to register interrupt %d.\n", i);
return (error);
}
}