diff options
author | Dmitry Torokhov <dtor_core@ameritech.net> | 2005-05-29 03:29:38 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor_core@ameritech.net> | 2005-05-29 03:29:38 -0400 |
commit | 65cde54b8b0299d7e46b8705338b01d1e44a5eb0 (patch) | |
tree | 2aa4c3ab303fd19440c636edaecdb0976f9d82c7 /drivers/usb/input/itmtouch.c | |
parent | 3108d42de4da0823feb37a55db62acdc01554625 (diff) |
Input: remove user counters from drivers/usb/input since input
core takes care of calling open and close methods only
when needed.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/usb/input/itmtouch.c')
-rw-r--r-- | drivers/usb/input/itmtouch.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/usb/input/itmtouch.c b/drivers/usb/input/itmtouch.c index 5122a7f701a9..47dec6a1b344 100644 --- a/drivers/usb/input/itmtouch.c +++ b/drivers/usb/input/itmtouch.c | |||
@@ -137,15 +137,10 @@ static int itmtouch_open(struct input_dev *input) | |||
137 | { | 137 | { |
138 | struct itmtouch_dev *itmtouch = input->private; | 138 | struct itmtouch_dev *itmtouch = input->private; |
139 | 139 | ||
140 | if (itmtouch->users++) | ||
141 | return 0; | ||
142 | |||
143 | itmtouch->readurb->dev = itmtouch->usbdev; | 140 | itmtouch->readurb->dev = itmtouch->usbdev; |
144 | 141 | ||
145 | if (usb_submit_urb(itmtouch->readurb, GFP_KERNEL)) { | 142 | if (usb_submit_urb(itmtouch->readurb, GFP_KERNEL)) |
146 | itmtouch->users--; | ||
147 | return -EIO; | 143 | return -EIO; |
148 | } | ||
149 | 144 | ||
150 | return 0; | 145 | return 0; |
151 | } | 146 | } |
@@ -154,8 +149,7 @@ static void itmtouch_close(struct input_dev *input) | |||
154 | { | 149 | { |
155 | struct itmtouch_dev *itmtouch = input->private; | 150 | struct itmtouch_dev *itmtouch = input->private; |
156 | 151 | ||
157 | if (!--itmtouch->users) | 152 | usb_kill_urb(itmtouch->readurb); |
158 | usb_kill_urb(itmtouch->readurb); | ||
159 | } | 153 | } |
160 | 154 | ||
161 | static int itmtouch_probe(struct usb_interface *intf, const struct usb_device_id *id) | 155 | static int itmtouch_probe(struct usb_interface *intf, const struct usb_device_id *id) |