Download raw body.
sys/qwz: fix build with enabled QWZ_DEBUG
On Sun, Mar 30, 2025 at 05:01:11PM +0200, Kirill A. Korinsky wrote:
> tech@,
>
> I'd like to fix building qwz.c when QWZ_DEBUG is defined.
>
> Ok?
ok stsp@, in case you are still looking for OKs
>
> Index: sys/dev/ic/qwz.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/ic/qwz.c,v
> retrieving revision 1.20
> diff -u -p -r1.20 qwz.c
> --- sys/dev/ic/qwz.c 29 Mar 2025 22:34:59 -0000 1.20
> +++ sys/dev/ic/qwz.c 30 Mar 2025 14:59:08 -0000
> @@ -6493,7 +6493,7 @@ qwz_core_fetch_bdf(struct qwz_softc *sc,
> return 0;
>
> DPRINTF("%s: failed to fetch board data for %s from %s\n",
> - sc->sc_dev.dv_xname, boardname, path);
> + sc->sc_dev.dv_xname, boardname, ATH12K_BOARD_API2_FILE);
> return ret;
> }
>
> @@ -6539,7 +6539,7 @@ qwz_core_fetch_regdb(struct qwz_softc *s
> return 0;
>
> DPRINTF("%s: failed to fetch regdb data for %s from %s\n",
> - sc->sc_dev.dv_xname, boardname, path);
> + sc->sc_dev.dv_xname, boardname, ATH12K_BOARD_API2_FILE);
> return ret;
> }
>
>
>
sys/qwz: fix build with enabled QWZ_DEBUG