From: Andrew Morton <akpm@osdl.org>
To: Linus Torvalds <torvalds@osdl.org>
Cc: Greg KH <gregkh@suse.de>,
linux-kernel@vger.kernel.org,
linux-usb-devel@lists.sourceforge.net
Subject: Re: [GIT PATCH] More USB patches for 2.6.18
Date: Thu, 28 Sep 2006 16:59:51 -0700 [thread overview]
Message-ID: <20060928165951.2c5bd4c7.akpm@osdl.org> (raw)
In-Reply-To: <Pine.LNX.4.64.0609281639040.3952@g5.osdl.org>
On Thu, 28 Sep 2006 16:40:23 -0700 (PDT)
Linus Torvalds <torvalds@osdl.org> wrote:
>
>
> On Thu, 28 Sep 2006, Greg KH wrote:
> >
> > Here are some more USB bugfixes and device ids 2.6.18. They should all
> > fix the reported problems in your current tree (if not, please let me
> > know.)
> >
> > All of these changes have been in the -mm tree for a while.
>
> Maybe I shouldn't have hurried you.
>
> In file included from drivers/usb/host/ohci-hcd.c:140:
> drivers/usb/host/ohci-hub.c: In function 'ohci_rh_resume':
> drivers/usb/host/ohci-hub.c:184: error: invalid storage class for function 'ohci_restart'
> drivers/usb/host/ohci-hub.c:188: warning: implicit declaration of function 'ohci_restart'
> drivers/usb/host/ohci-hcd.c: At top level:
> drivers/usb/host/ohci-hcd.c:815: error: static declaration of 'ohci_restart' follows non-static declaration
> drivers/usb/host/ohci-hub.c:188: error: previous implicit declaration of 'ohci_restart' was here
> make[3]: *** [drivers/usb/host/ohci-hcd.o] Error 1
> make[2]: *** [drivers/usb/host] Error 2
> make[1]: *** [drivers/usb] Error 2
> make: *** [drivers] Error 2
>
That's the "some gccs dont like static function decls in that scope" thing.
I fixed it (unpleasantly) like this:
diff -puN drivers/usb/host/ohci-hub.c~ohci-add-auto-stop-support-hack-hack drivers/usb/host/ohci-hub.c
--- a/drivers/usb/host/ohci-hub.c~ohci-add-auto-stop-support-hack-hack
+++ a/drivers/usb/host/ohci-hub.c
@@ -132,6 +132,10 @@ static inline struct ed *find_head (stru
return ed;
}
+#ifdef CONFIG_PM
+static int ohci_restart(struct ohci_hcd *ohci);
+#endif
+
/* caller has locked the root hub */
static int ohci_rh_resume (struct ohci_hcd *ohci)
__releases(ohci->lock)
@@ -181,8 +185,6 @@ __acquires(ohci->lock)
#ifdef CONFIG_PM
if (status == -EBUSY) {
if (!autostopped) {
- static int ohci_restart (struct ohci_hcd *ohci);
-
spin_unlock_irq (&ohci->lock);
(void) ohci_init (ohci);
status = ohci_restart (ohci);
_
next prev parent reply other threads:[~2006-09-29 0:00 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-28 22:42 [GIT PATCH] More USB patches for 2.6.18 Greg KH
2006-09-28 23:40 ` Linus Torvalds
2006-09-28 23:46 ` Greg KH
2006-09-28 23:59 ` Andrew Morton [this message]
2006-09-29 0:05 ` Greg KH
2006-09-29 0:07 ` Greg KH
2006-09-29 0:12 ` Andrew Morton
2006-09-29 0:08 ` [linux-usb-devel] " David Brownell
2006-09-29 0:20 ` Andrew Morton
2006-09-29 0:56 ` David Brownell
2006-09-29 16:01 ` Alan Stern
2006-09-29 0:51 ` Horst H. von Brand
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=20060928165951.2c5bd4c7.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb-devel@lists.sourceforge.net \
--cc=torvalds@osdl.org \
/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.