mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-18 00:31:54 +00:00
25 lines
550 B
C
25 lines
550 B
C
/*
|
|
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#ifndef __FU_SUPERIO_DEVICE_H
|
|
#define __FU_SUPERIO_DEVICE_H
|
|
|
|
#include "fu-plugin.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define FU_TYPE_SUPERIO_DEVICE (fu_superio_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuSuperioDevice, fu_superio_device, FU, SUPERIO_DEVICE, FuDevice)
|
|
|
|
FuSuperioDevice *fu_superio_device_new (const gchar *chipset,
|
|
guint16 id,
|
|
guint8 data_port,
|
|
guint8 cmd_port);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __FU_SUPERIO_DEVICE_H */
|