mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-11 04:47:32 +00:00

Asking the user for the UID mapping isn't working very well, as it requires lots of manual handholding. It also doesn't work very well when the device vendor does not actually have a PCI ID or if the vendor has split into two entities. Just use the OUI address as an additional VendorID and match any of the device IDs against any of the metadata-supplied values.
21 lines
539 B
C
21 lines
539 B
C
/*
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-plugin.h"
|
|
|
|
#define FU_TYPE_ATA_DEVICE (fu_ata_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuAtaDevice, fu_ata_device, FU, ATA_DEVICE, FuUdevDevice)
|
|
|
|
FuAtaDevice *fu_ata_device_new_from_blob (const guint8 *buf,
|
|
gsize sz,
|
|
GError **error);
|
|
|
|
/* for self tests */
|
|
guint8 fu_ata_device_get_transfer_mode (FuAtaDevice *self);
|
|
guint16 fu_ata_device_get_transfer_blocks (FuAtaDevice *self);
|