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