16 lines
300 B
C
16 lines
300 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
/*
|
||
|
* Copyright © 2022 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef _INTEL_GSC_FW_H_
|
||
|
#define _INTEL_GSC_FW_H_
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
struct intel_gsc_uc;
|
||
|
|
||
|
int intel_gsc_uc_fw_upload(struct intel_gsc_uc *gsc);
|
||
|
bool intel_gsc_uc_fw_init_done(struct intel_gsc_uc *gsc);
|
||
|
#endif
|