1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
/*
* Copyright 2023 Advanced Micro Devices Inc.
* All rights reserved.
*
* This file is provided under a dual MIT/LGPLv2 license. When using or
* redistributing this file, you may do so under either license.
* AMD Chooses the MIT license part of Dual MIT/LGPLv2 license agreement.
*
* SPDX-License-Identifier: LGPL-2.1-or-later OR MIT
*/
#pragma once
#include <fwupdplugin.h>
#define FU_TYPE_AMDGPU_DEVICE (fu_amd_gpu_device_get_type())
G_DECLARE_FINAL_TYPE(FuAmdGpuDevice, fu_amd_gpu_device, FU, AMDGPU_DEVICE, FuOpromDevice)
|