HV: Rename cat.c/.h files to rdt.c/.h

As part of rdt cat refactoring, goal is to combine all rdt
specific features such as CAT under one module. So renaming
rdt resouce specific files such as cat.c/.h to generic rdt.c/.h
files.

Tracked-On: #3715
Signed-off-by: Vijay Dhanraj <vijay.dhanraj@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Vijay Dhanraj
2020-02-17 07:13:56 -08:00
committed by wenlingz
parent ee455574ed
commit 2597429903
6 changed files with 10 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
/*
* Copyright (C) 2019 Intel Corporation. All rights reserved.
* Copyright (C) 2020 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef CAT_H
#define CAT_H
#ifndef RDT_H
#define RDT_H
/* The intel Resource Director Tech(RDT) based Cache Allocation Tech support */
struct cat_hw_info {
@@ -27,4 +27,4 @@ void setup_clos(uint16_t pcpu_id);
int32_t init_cat_cap_info(void);
uint64_t clos2prq_msr(uint16_t clos);
#endif /* CAT_H */
#endif /* RDT_H */