mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 16:53:59 -04:00
The file adf_cfg_services.h cannot be included in header files since it instantiates the structure adf_cfg_services. Move that structure to its own file and export the symbol. This does not introduce any functional change. Signed-off-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com> Reviewed-by: Damian Muszynski <damian.muszynski@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
25 lines
389 B
C
25 lines
389 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright(c) 2023 Intel Corporation */
|
|
#ifndef _ADF_CFG_SERVICES_H_
|
|
#define _ADF_CFG_SERVICES_H_
|
|
|
|
#include "adf_cfg_strings.h"
|
|
|
|
enum adf_services {
|
|
SVC_CY = 0,
|
|
SVC_CY2,
|
|
SVC_DC,
|
|
SVC_DCC,
|
|
SVC_SYM,
|
|
SVC_ASYM,
|
|
SVC_DC_ASYM,
|
|
SVC_ASYM_DC,
|
|
SVC_DC_SYM,
|
|
SVC_SYM_DC,
|
|
SVC_COUNT
|
|
};
|
|
|
|
extern const char *const adf_cfg_services[SVC_COUNT];
|
|
|
|
#endif
|