mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-12 19:34:28 +00:00

The original code was written by Dell for the dell-dock plugin, but it's exactly the same code and NVM format for Intel reference hardware.
26 lines
824 B
C
26 lines
824 B
C
/*
|
|
* Copyright (C) 2022 Richard Hughes <richard@hughsie.com>
|
|
* Copyright (C) 2021 Intel Corporation.
|
|
* Copyright (C) 2021 Dell Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This software and associated documentation (if any) is furnished
|
|
* under a license and may only be used or copied in accordance
|
|
* with the terms of the license.
|
|
*
|
|
* This file is provided under a dual MIT/LGPLv2 license. When using or
|
|
* redistributing this file, you may do so under either license.
|
|
* Dell Chooses the MIT license part of Dual MIT/LGPLv2 license agreement.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+ OR MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_INTEL_USB4_DEVICE (fu_intel_usb4_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuIntelUsb4Device, fu_intel_usb4_device, FU, INTEL_USB4_DEVICE, FuUsbDevice)
|