blob: 1aadaa495641bee3deb4f4d425c00b0ee497a483 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* SPDX-License-Identifier: BSD-3-Clause */
/* Copyright(c) 2007-2022 Intel Corporation */
/**
*****************************************************************************
* @file icp_sal_dc_err.c
*
* @defgroup SalCommon
*
* @ingroup SalCommon
*
*****************************************************************************/
/*
******************************************************************************
* Include public/global header files
******************************************************************************
*/
#include "cpa.h"
#include "icp_sal.h"
/*
*******************************************************************************
* Include private header files
*******************************************************************************
*/
#include "dc_error_counter.h"
Cpa64U
icp_sal_get_dc_error(Cpa8S dcError)
{
return getDcErrorCounter(dcError);
}
|