diff options
Diffstat (limited to 'arch/arm/mach-s3c64xx/setup-usb-phy.c')
| -rw-r--r-- | arch/arm/mach-s3c64xx/setup-usb-phy.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c64xx/setup-usb-phy.c b/arch/arm/mach-s3c64xx/setup-usb-phy.c index c8174d95339..ca960bda02f 100644 --- a/arch/arm/mach-s3c64xx/setup-usb-phy.c +++ b/arch/arm/mach-s3c64xx/setup-usb-phy.c @@ -76,7 +76,7 @@ static int s3c_usb_otgphy_exit(struct platform_device *pdev)  int s5p_usb_phy_init(struct platform_device *pdev, int type)  { -	if (type == S5P_USB_PHY_DEVICE) +	if (type == USB_PHY_TYPE_DEVICE)  		return s3c_usb_otgphy_init(pdev);  	return -EINVAL; @@ -84,7 +84,7 @@ int s5p_usb_phy_init(struct platform_device *pdev, int type)  int s5p_usb_phy_exit(struct platform_device *pdev, int type)  { -	if (type == S5P_USB_PHY_DEVICE) +	if (type == USB_PHY_TYPE_DEVICE)  		return s3c_usb_otgphy_exit(pdev);  	return -EINVAL;  |