git: b93985c11a6e - main - if_ffec: fix some misleading indentation

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Thu, 23 Jun 2022 18:16:03 UTC
The branch main has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=b93985c11a6e7c7dd5fcaca8db6f4847a0126991

commit b93985c11a6e7c7dd5fcaca8db6f4847a0126991
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2022-05-07 20:26:44 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2022-06-23 18:15:10 +0000

    if_ffec: fix some misleading indentation
---
 sys/dev/ffec/if_ffec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/ffec/if_ffec.c b/sys/dev/ffec/if_ffec.c
index b5abaea582e1..cd3681dbb24c 100644
--- a/sys/dev/ffec/if_ffec.c
+++ b/sys/dev/ffec/if_ffec.c
@@ -1428,7 +1428,7 @@ ffec_detach(device_t dev)
 		bus_dmamap_destroy(sc->rxdesc_tag, sc->rxdesc_map);
 	}
 	if (sc->rxdesc_tag != NULL)
-	bus_dma_tag_destroy(sc->rxdesc_tag);
+		bus_dma_tag_destroy(sc->rxdesc_tag);
 
 	/* Clean up TX DMA resources. */
 	for (idx = 0; idx < TX_DESC_COUNT; ++idx) {