brintos

brintos / linux-shallow public Read only

0
0
Text · 481 B · 64cf752 Raw
17 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Synopsys DesignWare Multimedia Card Interface Platform driver4 *5 * Copyright (C) 2012, Samsung Electronics Co., Ltd.6 */7 8#ifndef _DW_MMC_PLTFM_H_9#define _DW_MMC_PLTFM_H_10 11extern int dw_mci_pltfm_register(struct platform_device *pdev,12				const struct dw_mci_drv_data *drv_data);13extern void dw_mci_pltfm_remove(struct platform_device *pdev);14extern const struct dev_pm_ops dw_mci_pltfm_pmops;15 16#endif /* _DW_MMC_PLTFM_H_ */17