aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/core/usb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/core/usb.h b/drivers/usb/core/usb.h
index cc42972b6bb0..74df0db954c9 100644
--- a/drivers/usb/core/usb.h
+++ b/drivers/usb/core/usb.h
@@ -59,17 +59,17 @@ static inline int is_usb_device_driver(struct device_driver *drv)
59 59
60static inline void mark_active(struct usb_interface *f) 60static inline void mark_active(struct usb_interface *f)
61{ 61{
62 f->dev.power.power_state.event = PM_EVENT_ON; 62 f->is_active = 1;
63} 63}
64 64
65static inline void mark_quiesced(struct usb_interface *f) 65static inline void mark_quiesced(struct usb_interface *f)
66{ 66{
67 f->dev.power.power_state.event = PM_EVENT_FREEZE; 67 f->is_active = 0;
68} 68}
69 69
70static inline int is_active(struct usb_interface *f) 70static inline int is_active(struct usb_interface *f)
71{ 71{
72 return f->dev.power.power_state.event == PM_EVENT_ON; 72 return f->is_active;
73} 73}
74 74
75 75