19 lines
670 B
C
19 lines
670 B
C
|
/*
|
||
|
* Driver for sunxi SD/MMC host controllers
|
||
|
* (C) Copyright 2012-2017 lixiang <lixiang@allwinnertech.com>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License as
|
||
|
* published by the Free Software Foundation; either version 2 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*/
|
||
|
|
||
|
#ifndef __SUNXI_MMC_V4P5X_H__
|
||
|
#define __SUNXI_MMC_V4P5X_H__
|
||
|
|
||
|
void sunxi_mmc_init_priv_v4p5x(struct sunxi_mmc_host *host,
|
||
|
struct platform_device *pdev, int phy_index);
|
||
|
void sunxi_mmc_init_priv_v4p6x(struct sunxi_mmc_host *host,
|
||
|
struct platform_device *pdev, int phy_index);
|
||
|
#endif
|