forked from Minki/linux
c2de1c3829
The Arcom Zeus CF slot requires the same kind of support as the Viper. To avoid code duplication, introduce a platform device that abstracts the differences. This also allows for the removal of the ugly export of viper_cf_rst(). Signed-off-by: Marc Zyngier <maz@misterjones.org> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
12 lines
161 B
C
12 lines
161 B
C
#ifndef __ARCOM_PCMCIA_H
|
|
#define __ARCOM_PCMCIA_H
|
|
|
|
struct arcom_pcmcia_pdata {
|
|
int cd_gpio;
|
|
int rdy_gpio;
|
|
int pwr_gpio;
|
|
void (*reset)(int state);
|
|
};
|
|
|
|
#endif
|