21 lines
314 B
C
21 lines
314 B
C
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#ifdef SUPPORT_TGLLP
|
|
#include "hw_info_tgllp.h"
|
|
#endif
|
|
#ifdef SUPPORT_DG1
|
|
#include "hw_info_dg1.h"
|
|
#endif
|
|
#ifdef SUPPORT_RKL
|
|
#include "hw_info_rkl.h"
|
|
#endif
|
|
#ifdef SUPPORT_ADLS
|
|
#include "hw_info_adls.h"
|
|
#endif
|