Date: Tue, 7 Jun 2022 14:23:37 GMT From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 7b28b2906f83 - stable/13 - Fix an indentation bug in the bcm pci driver Message-ID: <202206071423.257ENbem020481@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=7b28b2906f83ae82979252acf88a5b116aa8685d commit 7b28b2906f83ae82979252acf88a5b116aa8685d Author: Andrew Turner <andrew@FreeBSD.org> AuthorDate: 2022-05-23 17:24:04 +0000 Commit: Andrew Turner <andrew@FreeBSD.org> CommitDate: 2022-06-07 14:20:19 +0000 Fix an indentation bug in the bcm pci driver Sponsored by: The FreeBSD Foundation (cherry picked from commit f16e38162c75015036b1c5e220b2f82a4bd94af1) --- 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 69c8a3e7f147..3bde327948e0 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); } }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202206071423.257ENbem020481>