aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-06-13 18:22:54 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-06-13 18:22:54 -0400
commite17f8af316525c2a795bb314dfcc23201fb51ef4 (patch)
tree99ea9c56dc9e8fc6485d0513e71aacdb50a19792 /include/linux
parenta276400d14bb5b98a5db1d87bbee7b1621abe4a1 (diff)
parent0b84704a2d6fdf55a3dcdd2a1f2ac8b48913c84b (diff)
Merge branch 'usb-linus' into usb-next
This is to pick up the changes to the option driver, which are needed for follow-on patches from Johan. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/pci.h2
-rw-r--r--include/linux/usb/hcd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index d8c379dba6ad..fefb4e19bf6a 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -176,6 +176,8 @@ enum pci_dev_flags {
176 PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) 2, 176 PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) 2,
177 /* Provide indication device is assigned by a Virtual Machine Manager */ 177 /* Provide indication device is assigned by a Virtual Machine Manager */
178 PCI_DEV_FLAGS_ASSIGNED = (__force pci_dev_flags_t) 4, 178 PCI_DEV_FLAGS_ASSIGNED = (__force pci_dev_flags_t) 4,
179 /* Device causes system crash if in D3 during S3 sleep */
180 PCI_DEV_FLAGS_NO_D3_DURING_SLEEP = (__force pci_dev_flags_t) 8,
179}; 181};
180 182
181enum pci_irq_reroute_variant { 183enum pci_irq_reroute_variant {
diff --git a/include/linux/usb/hcd.h b/include/linux/usb/hcd.h
index c532cbeabfbc..c5fdb148fc02 100644
--- a/include/linux/usb/hcd.h
+++ b/include/linux/usb/hcd.h
@@ -132,8 +132,6 @@ struct usb_hcd {
132 unsigned wireless:1; /* Wireless USB HCD */ 132 unsigned wireless:1; /* Wireless USB HCD */
133 unsigned authorized_default:1; 133 unsigned authorized_default:1;
134 unsigned has_tt:1; /* Integrated TT in root hub */ 134 unsigned has_tt:1; /* Integrated TT in root hub */
135 unsigned broken_pci_sleep:1; /* Don't put the
136 controller in PCI-D3 for system sleep */
137 135
138 unsigned int irq; /* irq allocated */ 136 unsigned int irq; /* irq allocated */
139 void __iomem *regs; /* device memory/io */ 137 void __iomem *regs; /* device memory/io */