
Change license to BSD-3-Clause Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
14 lines
290 B
C
14 lines
290 B
C
/*
|
|
* Copyright(c) 2012-2021 Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include "ocf/ocf.h"
|
|
#include "nop.h"
|
|
#include "../ocf_cache_priv.h"
|
|
|
|
void cleaning_nop_perform_cleaning(ocf_cache_t cache, ocf_cleaner_end_t cmpl)
|
|
{
|
|
cmpl(&cache->cleaner, OCF_CLEANER_DISABLE);
|
|
}
|