b83deaa741
The drivers/pcmcia/pxa2xx_*.c are essentially part of the board files, but for historic reasons located in drivers/pcmcia. Move them into the same place as the actual board file to avoid lots of machine header inclusions. Cc: Marek Vasut <marek.vasut@gmail.com> Cc: Dominik Brodowski <linux@dominikbrodowski.net> Cc: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
13 lines
200 B
C
13 lines
200 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#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
|