/
githubmirror
/
fwupd
Обзор
Документация
Войти
/
githubmirror
/
fwupd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
plugins/devlink/fu-devlink-device.h
30 строк
856 B
Richard Hughes
trivial: Run clang-format-21 on the entire source tree
26 ноя 2025, 02:30
26 ноя 2025, 02:30
7299c94
Код
Авторство
О чём код?
/* * Copyright 2025 NVIDIA Corporation & Affiliates * * SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include <fwupdplugin.h> #define FU_TYPE_DEVLINK_DEVICE (fu_devlink_device_get_type()) G_DECLARE_FINAL_TYPE(FuDevlinkDevice, fu_devlink_device, FU, DEVLINK_DEVICE, FuDevice) FuDevice * fu_devlink_device_new(FuContext *ctx, const gchar *bus_name, const gchar *dev_name, const gchar *serial_number) G_GNUC_NON_NULL(1, 2, 3); const gchar * fu_devlink_device_get_bus_name(FuDevlinkDevice *self) G_GNUC_NON_NULL(1); gboolean fu_devlink_device_write_firmware_component(FuDevlinkDevice *self, const gchar *component_name, gboolean omit_component_name, FuFirmware *firmware, FuProgress *progress, FwupdInstallFlags flags, GError **error) G_GNUC_NON_NULL(1, 2, 4, 5);