1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __LINUX_MMC_JZ4740_MMC 3 #define __LINUX_MMC_JZ4740_MMC 4 5 struct jz4740_mmc_platform_data { 6 int gpio_power; 7 int gpio_card_detect; 8 int gpio_read_only; 9 unsigned card_detect_active_low:1; 10 unsigned read_only_active_low:1; 11 unsigned power_active_low:1; 12 13 unsigned data_1bit:1; 14 }; 15 16 #endif 17