Relocate the structures adf_fw_objs and adf_fw_config from the file adf_4xxx_hw_data.c to the newly created adf_fw_config.h. These structures will be used by new device drivers. This does not introduce any functional change. Signed-off-by: Jie Wang <jie.wang@intel.com> Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
18 lines
301 B
C
18 lines
301 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright(c) 2023 Intel Corporation */
|
|
#ifndef ADF_FW_CONFIG_H_
|
|
#define ADF_FW_CONFIG_H_
|
|
|
|
enum adf_fw_objs {
|
|
ADF_FW_SYM_OBJ,
|
|
ADF_FW_ASYM_OBJ,
|
|
ADF_FW_DC_OBJ,
|
|
ADF_FW_ADMIN_OBJ,
|
|
};
|
|
|
|
struct adf_fw_config {
|
|
u32 ae_mask;
|
|
enum adf_fw_objs obj;
|
|
};
|
|
|
|
#endif
|