diff options
author | Tobias Herzog <t-herzog@gmx.de> | 2017-03-30 22:15:13 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-01 11:05:03 +0200 |
commit | d30eed1cd2b17f6140ec443f22a8e32f99cd99c1 (patch) | |
tree | 415ffbe47b012d81dffef4684030889c314ed4fc /drivers/usb/class | |
parent | 2d6dfd17aefb6e2376ba32d11bc2e5b6c961f072 (diff) |
cdc-acm: remove unused element of struct acm
write_used was introduced with commit 884b600f63dc ("[PATCH] USB: fix acm
trouble with terminals") but never used since.
Signed-off-by: Tobias Herzog <t-herzog@gmx.de>
Acked-by: Oliver Neukum <oneukum@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/class')
-rw-r--r-- | drivers/usb/class/cdc-acm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/class/cdc-acm.h b/drivers/usb/class/cdc-acm.h index b51913836409..7a2b3deafc90 100644 --- a/drivers/usb/class/cdc-acm.h +++ b/drivers/usb/class/cdc-acm.h @@ -101,7 +101,6 @@ struct acm { u8 *notification_buffer; /* to reassemble fragmented notifications */ unsigned int nb_index; unsigned int nb_size; - int write_used; /* number of non-empty write buffers */ int transmitting; spinlock_t write_lock; struct mutex mutex; |