This is consistent with the use of terms in other parts of SPDK and fits with the code living under module/ Change-Id: If182f7cf2d160d57443a1b5f24e0065f191b59b2 Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13919 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
16 lines
310 B
C
16 lines
310 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef SPDK_ACCEL_MODULE_IOAT_H
|
|
#define SPDK_ACCEL_MODULE_IOAT_H
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
#define IOAT_MAX_CHANNELS 64
|
|
|
|
void accel_ioat_enable_probe(void);
|
|
|
|
#endif /* SPDK_ACCEL_MODULE_IOAT_H */
|