viper-pcmcia.h 200 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ARCOM_PCMCIA_H
  3. #define __ARCOM_PCMCIA_H
  4. struct arcom_pcmcia_pdata {
  5. int cd_gpio;
  6. int rdy_gpio;
  7. int pwr_gpio;
  8. void (*reset)(int state);
  9. };
  10. #endif