cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mmc-esdhc-mcf.h (447B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2
      3#ifndef __LINUX_PLATFORM_DATA_MCF_ESDHC_H__
      4#define __LINUX_PLATFORM_DATA_MCF_ESDHC_H__
      5
      6enum cd_types {
      7	ESDHC_CD_NONE,		/* no CD, neither controller nor gpio */
      8	ESDHC_CD_CONTROLLER,	/* mmc controller internal CD */
      9	ESDHC_CD_PERMANENT,	/* no CD, card permanently wired to host */
     10};
     11
     12struct mcf_esdhc_platform_data {
     13	int max_bus_width;
     14	int cd_type;
     15};
     16
     17#endif /* __LINUX_PLATFORM_DATA_MCF_ESDHC_H__ */