-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 219795 b: refs/heads/master c: 126bb03 h: refs/heads/master i: 219793: 9fd39e7 219791: c1d30ca v: v3
- Loading branch information
Al Cho
authored and
Greg Kroah-Hartman
committed
Sep 8, 2010
1 parent
b100419
commit 9609d44
Showing
26 changed files
with
10,082 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 15b9e32769de7fb563360cb6a3d96e521c3734ac | ||
refs/heads/master: 126bb03b461c2f03f2d2a43b9a587941bf146e0e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
config USB_ENESTORAGE | ||
tristate "USB ENE card reader support" | ||
depends on USB && SCSI | ||
---help--- | ||
Say Y here if you wish to control a ENE Card reader. | ||
|
||
This option depends on 'SCSI' support being enabled, but you | ||
probably also need 'SCSI device support: SCSI disk support' | ||
(BLK_DEV_SD) for most USB storage devices. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called keucr. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
EXTRA_CFLAGS += -Idrivers/scsi | ||
|
||
obj-$(CONFIG_USB_ENESTORAGE) += keucr.o | ||
|
||
keucr-objs := \ | ||
usb.o \ | ||
scsiglue.o \ | ||
transport.o \ | ||
init.o \ | ||
sdscsi.o \ | ||
msscsi.o \ | ||
ms.o \ | ||
smscsi.o \ | ||
smilmain.o \ | ||
smilsub.o \ | ||
smilecc.o |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
TODO: | ||
- checkpatch.pl clean | ||
- sparse clean | ||
- determine if the driver should not be using a duplicate | ||
version of the usb-storage scsi interface code, but should | ||
be merged into the drivers/usb/storage/ directory and | ||
infrastructure instead. | ||
- review by the USB developer community | ||
|
||
Please send any patches for this driver to Al Cho <acho@novell.com> and | ||
Greg Kroah-Hartman <gregkh@suse.de>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ifndef COMMON_INCD | ||
#define COMMON_INCD | ||
|
||
typedef void VOID; | ||
typedef u8 BOOLEAN; | ||
typedef u8 BYTE; | ||
typedef u8 *PBYTE; | ||
typedef u16 WORD; | ||
typedef u16 *PWORD; | ||
typedef u32 DWORD; | ||
typedef u32 *PDWORD; | ||
|
||
#define swapWORD(w) ((((unsigned short)(w) << 8) & 0xff00) | (((unsigned short)(w) >> 8) & 0x00ff)) | ||
#define swapDWORD(dw) ((((unsigned long)(dw) << 24) & 0xff000000) | \ | ||
(((unsigned long)(dw) << 8) & 0x00ff0000) | \ | ||
(((unsigned long)(dw) >> 8) & 0x0000ff00) | \ | ||
(((unsigned long)(dw) >> 24) & 0x000000ff)) | ||
|
||
#define LittleEndianWORD(w) (w) | ||
#define LittleEndianDWORD(dw) (dw) | ||
#define BigEndianWORD(w) swapWORD(w) | ||
#define BigEndianDWORD(dw) swapDWORD(dw) | ||
|
||
#endif | ||
|
Oops, something went wrong.