mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-06 07:46:22 +00:00

For a while we flirted with the idea of updating non-internal libflashrom-derived devices but the impedance mismatch was just too great. We removed the extra unused subclasses of FuFlashromDevice, but never removed the indirection we added for the writing. Remove the unused code now that we agree on the longer term plan.
17 lines
420 B
C
17 lines
420 B
C
/*
|
|
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
|
|
* Copyright (C) 2021 Daniel Campello <campello@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_FLASHROM_DEVICE (fu_flashrom_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuFlashromDevice, fu_flashrom_device, FU, FLASHROM_DEVICE, FuUdevDevice)
|
|
|
|
FuDevice *
|
|
fu_flashrom_device_new(FuContext *ctx);
|