mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-17 03:05:28 +00:00

In general this is a cleanup, means less vfuncs that get called when devices are added. Beyon the optimization functionally should be a no-op for fwupd. It will also potentially storing the version to the newly created secure processor device in the future.
13 lines
291 B
C
13 lines
291 B
C
/*
|
|
* Copyright (C) 2022 Advanced Micro Devices Inc.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_PCI_PSP_DEVICE (fu_pci_psp_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuPciPspDevice, fu_pci_psp_device, FU, PCI_PSP_DEVICE, FuUdevDevice)
|