git: 858b29c7f0c5 - stable/13 - mxge_eth_z8e_fw_modevent: eliminate write only variable parent
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 02 Oct 2022 04:29:34 UTC
The branch stable/13 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=858b29c7f0c5f74ba3b4bf4f8f1ffb9eb1b95b77 commit 858b29c7f0c5f74ba3b4bf4f8f1ffb9eb1b95b77 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-07-08 17:53:31 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2022-10-02 04:25:53 +0000 mxge_eth_z8e_fw_modevent: eliminate write only variable parent Sponsored by: Netflix (cherry picked from commit 498276b4b430184e7d6c578f45fe80eb774cde24) --- sys/dev/mxge/mxge_eth_z8e.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/dev/mxge/mxge_eth_z8e.c b/sys/dev/mxge/mxge_eth_z8e.c index 144844c88c5b..47d6a55597b9 100644 --- a/sys/dev/mxge/mxge_eth_z8e.c +++ b/sys/dev/mxge/mxge_eth_z8e.c @@ -15,7 +15,7 @@ __FBSDID("$FreeBSD$"); static int mxge_eth_z8e_fw_modevent(module_t mod, int type, void *unused) { - const struct firmware *fp, *parent; + const struct firmware *fp; int error; switch (type) { case MOD_LOAD: @@ -25,7 +25,6 @@ mxge_eth_z8e_fw_modevent(module_t mod, int type, void *unused) eth_z8e_uncompressed_length, NULL); if (fp == NULL) goto fail_0; - parent = fp; return (0); fail_0: return (ENXIO);