Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Jan 2021 14:57:52 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: c49c4e095e6c - stable/12 - qatfw: Fix firmware autoloading for qat_c2xxx devices
Message-ID:  <202101061457.106EvqLt047751@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by markj:

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

commit c49c4e095e6ccabc9640c0108ea6023193978825
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2020-12-23 16:31:47 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2021-01-06 14:44:35 +0000

    qatfw: Fix firmware autoloading for qat_c2xxx devices
    
    r368193 was suppsed to rename the MOF firmware image, but the
    qat_c2xxxfw makefile defined the two images in the wrong order so the
    MMP image was renamed instead.
    
    (cherry picked from commit 3b216bfb6cce24aa84519315138be8d23ac5d613)
---
 sys/modules/qatfw/qat_c2xxx/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/modules/qatfw/qat_c2xxx/Makefile b/sys/modules/qatfw/qat_c2xxx/Makefile
index 094d2ecdfdf6..fe73d1ef6aea 100644
--- a/sys/modules/qatfw/qat_c2xxx/Makefile
+++ b/sys/modules/qatfw/qat_c2xxx/Makefile
@@ -3,8 +3,8 @@
 .PATH: ${SRCTOP}/sys/contrib/dev/qat
 
 KMOD=	qat_c2xxxfw
-IMG1=	mmp_firmware_c2xxx
-IMG2=	mof_firmware_c2xxx
+IMG1=	mof_firmware_c2xxx
+IMG2=	mmp_firmware_c2xxx
 
 FIRMWS=	${IMG1}.bin:${KMOD}:111 ${IMG2}.bin:${IMG2}:111
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101061457.106EvqLt047751>