1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2012 Samsung Electronics Co.Ltd
4  *		http://www.samsung.com/
5  *
6  * Defines phy types for samsung usb phy controllers - HOST or DEIVCE.
7  *
8  * This program is free software; you can redistribute  it and/or modify it
9  * under  the terms of  the GNU General  Public License as published by the
10  * Free Software Foundation;  either version 2 of the  License, or (at your
11  * option) any later version.
12  */
13 
14 enum samsung_usb_phy_type {
15 	USB_PHY_TYPE_DEVICE,
16 	USB_PHY_TYPE_HOST,
17 };
18