All of lore.kernel.org
 help / color / mirror / Atom feed
From: <gregkh@suse.de>
To: ncase@xes-inc.com, bigeasy@linutronix.de, gregkh@suse.de,
	linuxppc-dev@ozlabs.org
Subject: patch usb-isp1760-assign-resource-fields-before-adding-hcd.patch added to gregkh-2.6 tree
Date: Fri, 06 Jun 2008 15:52:15 -0700	[thread overview]
Message-ID: <12127927354068@kroah.org> (raw)
In-Reply-To: <1211405300.13845.627.camel@localhost.localdomain>


This is a note to let you know that I've just added the patch titled

     Subject: USB: isp1760: Assign resource fields before adding hcd

to my gregkh-2.6 tree.  Its filename is

     usb-isp1760-assign-resource-fields-before-adding-hcd.patch

This tree can be found at 
    http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/


>From ncase@xes-inc.com  Fri Jun  6 15:07:08 2008
From: Nate Case <ncase@xes-inc.com>
Date: Wed, 21 May 2008 16:28:20 -0500
Subject: USB: isp1760: Assign resource fields before adding hcd
To: Sebastian Siewior <bigeasy@linutronix.de>
Cc: Greg Kroah-Hartman <gregkh@suse.de>, linux-usb@vger.kernel.org, linuxppc-dev <linuxppc-dev@ozlabs.org>
Message-ID: <1211405300.13845.627.camel@localhost.localdomain>


This fixes the bogus "io mem 0x00000000" message printed
during driver init due to hcd->rsrc_start being assigned after
the call to usb_add_hcd().

Signed-off-by: Nate Case <ncase@xes-inc.com>
Acked-by: Sebastian Siewior <bigeasy@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

---
 drivers/usb/host/isp1760-hcd.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

--- a/drivers/usb/host/isp1760-hcd.c
+++ b/drivers/usb/host/isp1760-hcd.c
@@ -2207,14 +2207,14 @@ struct usb_hcd *isp1760_register(u64 res
 		goto err_put;
 	}
 
-	ret = usb_add_hcd(hcd, irq, irqflags);
-	if (ret)
-		goto err_unmap;
-
 	hcd->irq = irq;
 	hcd->rsrc_start = res_start;
 	hcd->rsrc_len = res_len;
 
+	ret = usb_add_hcd(hcd, irq, irqflags);
+	if (ret)
+		goto err_unmap;
+
 	return hcd;
 
 err_unmap:


Patches currently in gregkh-2.6 which might be from ncase@xes-inc.com are

usb.current/usb-isp1760-assign-resource-fields-before-adding-hcd.patch

      parent reply	other threads:[~2008-06-06 22:57 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-21 21:28 [PATCH 1/2] USB: isp1760: Assign resource fields before adding hcd Nate Case
2008-05-22 14:46 ` Sebastian Siewior
2008-06-06 22:52 ` gregkh [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=12127927354068@kroah.org \
    --to=gregkh@suse.de \
    --cc=bigeasy@linutronix.de \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=ncase@xes-inc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.