blob: ea5c55fc7fe14345b6a8d19e78129b6631de8b22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __DRIVERS_GENERIC_BAYHUB_LV2_CHIP_H__
#define __DRIVERS_GENERIC_BAYHUB_LV2_CHIP_H__
#include <stdbool.h>
/* Bayhub LV2 PCIe to SD bridge */
struct drivers_generic_bayhub_lv2_config {
bool enable_power_saving;
};
#endif /* __DRIVERS_GENERIC_BAYHUB_LV2_CHIP_H__ */
|