diff options
author | Jingoo Han <jg1.han@samsung.com> | 2011-12-23 11:19:36 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-12-23 11:21:28 +0900 |
commit | 6e7eb170fda0ee14a2cb75a70825a2328fa1f9b8 (patch) | |
tree | dc318840a156031d9b099a7be45f5be6df246768 /arch/arm/mach-exynos/include/mach/ohci.h | |
parent | 384703b8e6cd4c8ef08512e596024e028c91c339 (diff) | |
download | blackbird-obmc-linux-6e7eb170fda0ee14a2cb75a70825a2328fa1f9b8.tar.gz blackbird-obmc-linux-6e7eb170fda0ee14a2cb75a70825a2328fa1f9b8.zip |
ARM: EXYNOS: Add USB OHCI device
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos/include/mach/ohci.h')
-rw-r--r-- | arch/arm/mach-exynos/include/mach/ohci.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/include/mach/ohci.h b/arch/arm/mach-exynos/include/mach/ohci.h new file mode 100644 index 000000000000..c256c595be5e --- /dev/null +++ b/arch/arm/mach-exynos/include/mach/ohci.h @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2011 Samsung Electronics Co.Ltd + * http://www.samsung.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 __MACH_EXYNOS_OHCI_H +#define __MACH_EXYNOS_OHCI_H + +struct exynos4_ohci_platdata { + int (*phy_init)(struct platform_device *pdev, int type); + int (*phy_exit)(struct platform_device *pdev, int type); +}; + +extern void exynos4_ohci_set_platdata(struct exynos4_ohci_platdata *pd); + +#endif /* __MACH_EXYNOS_OHCI_H */ |