fwupd/plugins/vbe/fu-vbe-device.h
Richard Hughes 7cc725b918 vbe: Remove the stored VBE dir
This can be easily retrieved using LOCALSTATEDIR_PKG by the subclass.
2023-01-10 20:40:57 +00:00

24 lines
494 B
C

/*
* Copyright (C) 2022 Google LLC
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <fwupdplugin.h>
#define FU_TYPE_VBE_DEVICE (fu_vbe_device_get_type())
G_DECLARE_DERIVABLE_TYPE(FuVbeDevice, fu_vbe_device, FU, VBE_DEVICE, FuDevice)
struct _FuVbeDeviceClass {
FuDeviceClass parent_class;
};
FuFdtImage *
fu_vbe_device_get_fdt_root(FuVbeDevice *self);
FuFdtImage *
fu_vbe_device_get_fdt_node(FuVbeDevice *self);
gchar **
fu_vbe_device_get_compatible(FuVbeDevice *self);