blob: 8a53fd34daf76c1af2449bab9ca7fb222f186034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Purna Chandra Mandal, purna.mandal@microchip.com
* Copyright (C) 2015 Microchip Technology Inc. All rights reserved.
*/
#ifndef __PIC32_SDHCI_PDATA_H__
#define __PIC32_SDHCI_PDATA_H__
struct pic32_sdhci_platform_data {
/* read & write fifo threshold */
int (*setup_dma)(u32 rfifo, u32 wfifo);
};
#endif
|