mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-10 04:51:39 +00:00

This change allows other device types to derive from common flashrom code in the flashrom-device type. Change-Id: Ic963fd586e0a73153c54889fce50055753a1bf5c
16 lines
427 B
C
16 lines
427 B
C
/*
|
|
* Copyright (C) 2021 Daniel Campello <campello@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-flashrom-device.h"
|
|
|
|
#define FU_TYPE_FLASHROM_INTERNAL_DEVICE (fu_flashrom_internal_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuFlashromInternalDevice, fu_flashrom_internal_device, FU,
|
|
FLASHROM_INTERNAL_DEVICE, FuFlashromDevice)
|
|
|
|
FuDevice *fu_flashrom_internal_device_new (void);
|