diff options
author | Alexey Sokolov <sokolov@7pikes.com> | 2015-06-02 10:49:30 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-08 23:01:13 +0200 |
commit | 15bf722e6f6c0b884521a0363204532e849deb7f (patch) | |
tree | 000d71b2f7dc9c25a75c8c3d556b3194103ae78a /drivers/usb/class/cdc-acm.h | |
parent | Merge 4.1-rc7 into usb-next (diff) | |
download | linux-15bf722e6f6c0b884521a0363204532e849deb7f.tar.xz linux-15bf722e6f6c0b884521a0363204532e849deb7f.zip |
cdc-acm: Add support of ATOL FPrint fiscal printers
ATOL FPrint fiscal printers require usb_clear_halt to be executed
to work properly. Add quirk to fix the issue.
Signed-off-by: Alexey Sokolov <sokolov@7pikes.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/class/cdc-acm.h')
-rw-r--r-- | drivers/usb/class/cdc-acm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/class/cdc-acm.h b/drivers/usb/class/cdc-acm.h index a9e68ce25425..dd9af38e7cda 100644 --- a/drivers/usb/class/cdc-acm.h +++ b/drivers/usb/class/cdc-acm.h @@ -133,3 +133,4 @@ struct acm { #define NO_DATA_INTERFACE BIT(4) #define IGNORE_DEVICE BIT(5) #define QUIRK_CONTROL_LINE_STATE BIT(6) +#define CLEAR_HALT_CONDITIONS BIT(7) |