From 0e3f25296886a569a8d7198765fbd7fe23b431b1 Mon Sep 17 00:00:00 2001
From: Thomas Chou <thomas@wytron.com.tw>
Date: Sat, 17 Nov 2007 20:18:50 +0800
Subject: [PATCH] isp1362: skip clock ready check

The clock check does not work on DE2.
---
 linux-2.6.x/drivers/usb/host/isp1362-hcd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/linux-2.6.x/drivers/usb/host/isp1362-hcd.c b/linux-2.6.x/drivers/usb/host/isp1362-hcd.c
index 676dab1..f08955e 100644
--- a/linux-2.6.x/drivers/usb/host/isp1362-hcd.c
+++ b/linux-2.6.x/drivers/usb/host/isp1362-hcd.c
@@ -2490,7 +2490,7 @@ static int isp1362_hc_reset(struct usb_hcd *hcd)
 		ERR("Clock not ready after %lums\n", timeout);
 		ret = -ENODEV;
 	}
-	return ret;
+	return 0;   //  SKIP ret;
 }
 
 static void isp1362_hc_stop(struct usb_hcd *hcd)
-- 
1.5.3.3

