// SPDX-License-Identifier: GPL-2.0 /* * Thunderbolt driver - quirks * * Copyright (c) 2020 Mario Limonciello <[email protected]> */ #include "tb.h" static void quirk_force_power_link(struct tb_switch *sw) { … } static void quirk_dp_credit_allocation(struct tb_switch *sw) { … } static void quirk_clx_disable(struct tb_switch *sw) { … } static void quirk_usb3_maximum_bandwidth(struct tb_switch *sw) { … } static void quirk_block_rpm_in_redrive(struct tb_switch *sw) { … } struct tb_quirk { … }; static const struct tb_quirk tb_quirks[] = …; /** * tb_check_quirks() - Check for quirks to apply * @sw: Thunderbolt switch * * Apply any quirks for the Thunderbolt controller. */ void tb_check_quirks(struct tb_switch *sw) { … }