git: 8eca341d9bb6 - main - follow up to 18679ab1, actually change size of mmc_sim::name to 16

From: Andriy Gapon <avg_at_FreeBSD.org>
Date: Fri, 17 Dec 2021 11:26:16 UTC
The branch main has been updated by avg:

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

commit 8eca341d9bb678f08065edd8f24c2ab32dcf8e56
Author:     Andriy Gapon <avg@FreeBSD.org>
AuthorDate: 2021-12-17 11:20:47 +0000
Commit:     Andriy Gapon <avg@FreeBSD.org>
CommitDate: 2021-12-17 11:24:53 +0000

    follow up to 18679ab1, actually change size of mmc_sim::name to 16
    
    The change was made locally but was not squashed into the commit.
    
    Fixes:          18679ab1 mmc_sim: fix setting of the mutex name
    MFC after:      8 days
---
 sys/cam/mmc/mmc_sim.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/cam/mmc/mmc_sim.h b/sys/cam/mmc/mmc_sim.h
index 10bd183c307d..18c49b3f57e8 100644
--- a/sys/cam/mmc/mmc_sim.h
+++ b/sys/cam/mmc/mmc_sim.h
@@ -33,7 +33,7 @@
 struct mmc_sim {
 	struct mmc_cam_sim_softc	*sc;
 	struct mtx			mtx;
-	char				name[64];
+	char				name[16];
 	struct cam_devq			*devq;
 	struct cam_sim			*sim;
 	device_t			dev;