mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-03 02:09:13 +00:00
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2018 Dell Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This software and associated documentation (if any) is furnished
|
|
* under a license and may only be used or copied in accordance
|
|
* with the terms of the license.
|
|
*
|
|
* This file is provided under a dual MIT/LGPLv2 license. When using or
|
|
* redistributing this file, you may do so under either license.
|
|
* Dell Chooses the MIT license part of Dual MIT/LGPLv2 license agreement.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+ OR MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
#include "fu-device.h"
|
|
#include "fu-dell-dock-i2c-ec.h"
|
|
#include "fu-dell-dock-i2c-mst.h"
|
|
#include "fu-dell-dock-i2c-tbt.h"
|
|
#include "fu-dell-dock-hub.h"
|
|
#include "fu-dell-dock-hid.h"
|
|
#include "fu-dell-dock-status.h"
|
|
|
|
#define DELL_DOCK_EC_INSTANCE_ID "USB\\VID_413C&PID_B06E&hub&embedded"
|
|
#define DELL_DOCK_TBT_INSTANCE_ID "TBT-00d4b070"
|
|
|
|
gboolean fu_dell_dock_set_power (FuDevice *device,
|
|
guint8 target,
|
|
gboolean enabled,
|
|
GError **error);
|
|
void fu_dell_dock_will_replug (FuDevice *device);
|
|
|
|
void fu_dell_dock_clone_updatable (FuDevice *device);
|