opnsense-src/sys/dev/qat/qat_api
Dimitry Andric 357378bbde Fix enum warnings in qat
This fixes a number of clang 19 warnings:

    sys/dev/qat/qat_api/common/compression/dc_session.c:154:15: error: comparison of different enumeration types ('enum _CpaBoolean' and 'icp_qat_hw_compression_delayed_match_t') [-Werror,-Wenum-compare]
      154 |         if (CPA_TRUE == pService->comp_device_data.enableDmm) {
          |             ~~~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    sys/dev/qat/qat_api/common/compression/dc_session.c:285:17: error: comparison of different enumeration types ('enum _CpaBoolean' and 'icp_qat_hw_compression_delayed_match_t') [-Werror,-Wenum-compare]
      285 |                     (CPA_TRUE == pService->comp_device_data.enableDmm) ?
          |                      ~~~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The `enableDmm` field of variable `comp_device_data` is of type
`icp_qat_hw_compression_delayed_match_t`, not `CpaBoolean`. In this
case, we can seamlessly replace the value with
`ICP_QAT_HW_COMPRESSION_DELAYED_MATCH_ENABLED`, which is numerically
equal to `CPA_TRUE`.

MFC after:	3 days
2024-07-31 21:31:55 +02:00
..
common Fix enum warnings in qat 2024-07-31 21:31:55 +02:00
device sys: Remove $FreeBSD$: one-line .c comment pattern 2023-08-16 11:54:24 -06:00
firmware/include qat: Intel 4xxx Series driver API extension 2023-09-06 10:00:59 -04:00
include qat: Fix typo (triple S) 2023-12-27 20:24:31 -07:00
qat_direct/include sys: Remove $FreeBSD$: one-line .c comment pattern 2023-08-16 11:54:24 -06:00
qat_kernel/src sys: Remove $FreeBSD$: one-line .c comment pattern 2023-08-16 11:54:24 -06:00
qat_utils Deprecate contigfree(9) in favour of free(9) 2024-07-26 10:45:01 +00:00
freebsd_module.c sys: Remove $FreeBSD$: one-line .c comment pattern 2023-08-16 11:54:24 -06:00