Greetings,
In rebuilding the code, GCC complained about a statement with no effect. I traced it to a malformed statement which was missing an '='. The fix is attached.

                Randy Vinson
                MontaVista Software
Adding a missing '='.

Signed-off-by: Randy Vinson <[EMAIL PROTECTED]>

---
commit 95a37a0e8692f79afa54e80b7b37dbc818f8e11d
tree f696ac365e81fbc7163e236b2110e0e03ba09660
parent 83565d723f5962dad8eeea1d008a5370eddc5693
author Randy Vinson <[EMAIL PROTECTED](none)> Fri, 20 Jan 2006 10:46:17 -0700
committer Randy Vinson <[EMAIL PROTECTED](none)> Fri, 20 Jan 2006 10:46:17 -0700

 drivers/usb/host/ehci-fsl.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c
index 973115e..8e68de6 100644
--- a/drivers/usb/host/ehci-fsl.c
+++ b/drivers/usb/host/ehci-fsl.c
@@ -94,7 +94,7 @@ int usb_hcd_fsl_probe(const struct hc_dr
                dev_err(&pdev->dev,
                        "Found HC with no register addr. Check %s setup!\n",
                        pdev->dev.bus_id);
-               retval -ENODEV;
+               retval = -ENODEV;
                goto err2;
        }
        hcd->rsrc_start = res->start;

Reply via email to