git: 004877c7d2e9 - stable/13 - stand: Use c99 structure initialization for fwohci device

From: Warner Losh <imp_at_FreeBSD.org>
Date: Tue, 24 Jan 2023 22:11:14 UTC
The branch stable/13 has been updated by imp:

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

commit 004877c7d2e9c15bc9c773bf8562737a1da49aec
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-07-24 21:51:29 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-01-24 21:49:26 +0000

    stand: Use c99 structure initialization for fwohci device
    
    Use c99 structure init for devsw.
    
    Sponsored by:           Netflix
    
    (cherry picked from commit bf855d1bf252bdf31a405cef65021d63846765ab)
---
 stand/i386/libfirewire/firewire.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/stand/i386/libfirewire/firewire.c b/stand/i386/libfirewire/firewire.c
index b9cb1ec0b19a..c4e4bdaa065f 100644
--- a/stand/i386/libfirewire/firewire.c
+++ b/stand/i386/libfirewire/firewire.c
@@ -76,15 +76,15 @@ static void	fw_cleanup(void);
 void		fw_enable(void);
 
 struct devsw fwohci = {
-    "FW1394", 	/* 7 chars at most */
-    DEVT_NET, 
-    fw_init,
-    fw_strategy, 
-    fw_open, 
-    fw_close, 
-    noioctl,
-    fw_print,
-    fw_cleanup
+	.dv_name = "FW1394", 	/* 7 chars at most */
+	.dv_type = DEVT_NET,
+	.dv_init = fw_init,
+	.dv_strategy = fw_strategy,
+	.dv_open = fw_open,
+	.dv_close = fw_close,
+	.dv_ioctl = noioctl,
+	.dv_print = fw_print,
+	.dv_cleanup = fw_cleanup,
 };
 
 static struct fwohci_softc fwinfo[MAX_OHCI];