android_kernel_samsung_a7y1.../drivers/crypto/fmp/fmp_dev.h
prashantpaddune 3bca37f224 A750FXXU4CTBC
2020-03-27 21:51:54 +05:30

39 lines
1.1 KiB
C

/*
* Copyright (C) 2016 Samsung Electronics Co., Ltd.
*
* 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 _FMP_DEV_H_
#define _FMP_DEV_H_
#ifdef CONFIG_MMC_DW_EXYNOS_FMP
int exynos_mmc_fmp_host_set_device(struct platform_device *host_pdev,
struct platform_device *pdev,
struct exynos_fmp_variant_ops *fmp_vops);
#else
int exynos_mmc_fmp_host_set_device(struct platform_device *host_pdev,
struct platform_device *pdev,
struct exynos_fmp_variant_ops *fmp_vops)
{
return 0;
}
#endif
#ifdef CONFIG_SCSI_UFS_EXYNOS_FMP
int exynos_ufs_fmp_host_set_device(struct platform_device *host_pdev,
struct platform_device *pdev,
struct exynos_fmp_variant_ops *fmp_vops);
#else
int exynos_ufs_fmp_host_set_device(struct platform_device *host_pdev,
struct platform_device *pdev,
struct exynos_fmp_variant_ops *fmp_vops)
{
return 0;
}
#endif
#endif