alauda.c (3eb66e91a25497065c5322b1268cbc3953642227) | alauda.c (32bca2df7da27be34371a37f9bb5e2b85fdd92bd) |
---|---|
1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Driver for Alauda-based card readers 4 * 5 * Current development and maintenance by: 6 * (c) 2005 Daniel Drake <dsd@gentoo.org> 7 * 8 * The 'Alauda' is a chip manufacturered by RATOC for OEM use. --- 22 unchanged lines hidden (view full) --- 31#include "debug.h" 32#include "scsiglue.h" 33 34#define DRV_NAME "ums-alauda" 35 36MODULE_DESCRIPTION("Driver for Alauda-based card readers"); 37MODULE_AUTHOR("Daniel Drake <dsd@gentoo.org>"); 38MODULE_LICENSE("GPL"); | 1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Driver for Alauda-based card readers 4 * 5 * Current development and maintenance by: 6 * (c) 2005 Daniel Drake <dsd@gentoo.org> 7 * 8 * The 'Alauda' is a chip manufacturered by RATOC for OEM use. --- 22 unchanged lines hidden (view full) --- 31#include "debug.h" 32#include "scsiglue.h" 33 34#define DRV_NAME "ums-alauda" 35 36MODULE_DESCRIPTION("Driver for Alauda-based card readers"); 37MODULE_AUTHOR("Daniel Drake <dsd@gentoo.org>"); 38MODULE_LICENSE("GPL"); |
39MODULE_IMPORT_NS(USB_STORAGE); |
|
39 40/* 41 * Status bytes 42 */ 43#define ALAUDA_STATUS_ERROR 0x01 44#define ALAUDA_STATUS_READY 0x40 45 46/* --- 1217 unchanged lines hidden --- | 40 41/* 42 * Status bytes 43 */ 44#define ALAUDA_STATUS_ERROR 0x01 45#define ALAUDA_STATUS_READY 0x40 46 47/* --- 1217 unchanged lines hidden --- |