diff options
-rw-r--r-- | drivers/usb/serial/sierra.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index 68fa0e43b781..8c075b2416bb 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c | |||
@@ -912,6 +912,7 @@ static void sierra_release(struct usb_serial *serial) | |||
912 | } | 912 | } |
913 | } | 913 | } |
914 | 914 | ||
915 | #ifdef CONFIG_PM | ||
915 | static void stop_read_write_urbs(struct usb_serial *serial) | 916 | static void stop_read_write_urbs(struct usb_serial *serial) |
916 | { | 917 | { |
917 | int i, j; | 918 | int i, j; |
@@ -988,6 +989,10 @@ static int sierra_resume(struct usb_serial *serial) | |||
988 | 989 | ||
989 | return ec ? -EIO : 0; | 990 | return ec ? -EIO : 0; |
990 | } | 991 | } |
992 | #else | ||
993 | #define sierra_suspend NULL | ||
994 | #define sierra_resume NULL | ||
995 | #endif | ||
991 | 996 | ||
992 | static struct usb_serial_driver sierra_device = { | 997 | static struct usb_serial_driver sierra_device = { |
993 | .driver = { | 998 | .driver = { |