aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2023-01-27 15:18:44 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2023-02-23 19:30:35 +0000
commit0da06968d3e84c45b6b39b1baedec9a940ed85a6 (patch)
tree70d285bdf55d42601b863691c8e398ffc885154b
parentac25a113775ad527a0fc4040738bfc9e43c7db4e (diff)
downloadsrc-0da06968d3e84c45b6b39b1baedec9a940ed85a6.tar.gz
src-0da06968d3e84c45b6b39b1baedec9a940ed85a6.zip
LinuxKPI: linux_pci.c: fix whitespace
Properly indent a line. No functional change. Sponsored by: The FreeBSD Foundation Approved by: re (cperciva) (cherry picked from commit 68b1d162505149b8629f7e22cecf298cea2ff1f9) (cherry picked from commit 069f504a8c4f9873ca32637cf0df1b0390b69b6a)
-rw-r--r--sys/compat/linuxkpi/common/src/linux_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linuxkpi/common/src/linux_pci.c b/sys/compat/linuxkpi/common/src/linux_pci.c
index 54780adfda14..15c5030a33b9 100644
--- a/sys/compat/linuxkpi/common/src/linux_pci.c
+++ b/sys/compat/linuxkpi/common/src/linux_pci.c
@@ -1184,7 +1184,7 @@ linuxkpi_dmam_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_ha
struct lkpi_devres_dmam_coherent *dr;
dr = lkpi_devres_alloc(lkpi_dmam_free_coherent,
- sizeof(*dr), GFP_KERNEL | __GFP_ZERO);
+ sizeof(*dr), GFP_KERNEL | __GFP_ZERO);
if (dr == NULL)
return (NULL);