From: David Brownell <david-b@pacbell.net>
To: Linus Torvalds <torvalds@osdl.org>
Cc: Greg KH <greg@kroah.com>,
akpm@osdl.org, linux-usb-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org
Subject: Re: [linux-usb-devel] [BK PATCH] USB changes for 2.6.6
Date: Sun, 16 May 2004 11:14:05 -0700 [thread overview]
Message-ID: <40A7AF6D.6060304@pacbell.net> (raw)
In-Reply-To: <Pine.LNX.4.58.0405161101160.25502@ppc970.osdl.org>
[-- Attachment #1: Type: text/plain, Size: 408 bytes --]
Linus Torvalds wrote:
>
> So I'd much rather just have two different functions, one in the CONFIG_PM
> section, and one in the !CONFIG_PM one. That's how we already do
> everything else in that header file (and how we handle PCI etc).
More like this then? I'm not sure whether you'd prefer
to apply that logic to the "struct pm_info" innards too.
That file has multiple CONFIG_PM sections, too.
- Dave
[-- Attachment #2: Diff --]
[-- Type: text/plain, Size: 1276 bytes --]
--- 1.13/include/linux/pm.h Thu Aug 21 11:47:27 2003
+++ edited/include/linux/pm.h Sun May 16 11:11:06 2004
@@ -238,6 +238,24 @@
#endif
};
+#ifdef CONFIG_PM
+
+static inline u32
+device_pm_state(struct dev_pm_info *info)
+{
+ return info->power_state;
+}
+
+#else
+
+static inline u32
+device_pm_state(struct dev_pm_info *info)
+{
+ return 0;
+}
+
+#endif
+
extern void device_pm_set_parent(struct device * dev, struct device * parent);
extern int device_suspend(u32 state);
--- 1.33/drivers/usb/host/ehci-dbg.c Fri May 7 12:48:33 2004
+++ edited/drivers/usb/host/ehci-dbg.c Sun May 16 10:49:54 2004
@@ -639,7 +639,7 @@
spin_lock_irqsave (&ehci->lock, flags);
- if (bus->controller->power.power_state) {
+ if (device_pm_state (&bus->controller->power)) {
size = scnprintf (next, size,
"bus %s, device %s (driver " DRIVER_VERSION ")\n"
"SUSPENDED (no register access)\n",
--- 1.26/drivers/usb/host/ohci-dbg.c Tue May 11 13:17:33 2004
+++ edited/drivers/usb/host/ohci-dbg.c Sun May 16 10:49:54 2004
@@ -623,7 +623,7 @@
hcd->self.controller->bus_id,
hcd_name);
- if (bus->controller->power.power_state) {
+ if (device_pm_state (&bus->controller->power)) {
size -= scnprintf (next, size,
"SUSPENDED (no register access)\n");
goto done;
next prev parent reply other threads:[~2004-05-16 18:17 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-05-14 22:45 [BK PATCH] USB changes for 2.6.6 Greg KH
2004-05-15 11:32 ` [linux-usb-devel] " Olaf Hering
2004-05-15 17:37 ` Linus Torvalds
2004-05-16 17:51 ` David Brownell
2004-05-16 18:02 ` Linus Torvalds
2004-05-16 18:14 ` David Brownell [this message]
2004-05-16 18:22 ` Linus Torvalds
2004-05-16 18:28 ` David Brownell
2004-05-16 18:31 ` Greg KH
2004-05-19 20:33 ` Erik Rigtorp
2004-05-19 20:49 ` Greg KH
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=40A7AF6D.6060304@pacbell.net \
--to=david-b@pacbell.net \
--cc=akpm@osdl.org \
--cc=greg@kroah.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox