Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1339095 > unrolled thread

[PATCH] USB: idmouse.c: Put the interface on error

Started byJunjie Mao <junjie.mao@enight.me>
First post2016-02-22 04:00 +0100
Last post2016-02-22 04:00 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] USB: idmouse.c: Put the interface on error Junjie Mao <junjie.mao@enight.me> - 2016-02-22 04:00 +0100

#1339095 — [PATCH] USB: idmouse.c: Put the interface on error

FromJunjie Mao <junjie.mao@enight.me>
Date2016-02-22 04:00 +0100
Subject[PATCH] USB: idmouse.c: Put the interface on error
Message-ID<r4OT8-7hh-31@gated-at.bofh.it>
usb_autopm_put_interface() should be called regardless of what
idmouse_create_image() returns.

Signed-off-by: Junjie Mao <junjie.mao@enight.me>
---
 drivers/usb/misc/idmouse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/misc/idmouse.c b/drivers/usb/misc/idmouse.c
index 4e38683c653c..5105397e62fc 100644
--- a/drivers/usb/misc/idmouse.c
+++ b/drivers/usb/misc/idmouse.c
@@ -257,9 +257,9 @@ static int idmouse_open(struct inode *inode, struct file *file)
 		if (result)
 			goto error;
 		result = idmouse_create_image (dev);
+		usb_autopm_put_interface(interface);
 		if (result)
 			goto error;
-		usb_autopm_put_interface(interface);
 
 		/* increment our usage count for the driver */
 		++dev->open;
-- 
1.9.3

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web