Commit 126bb03b authored by Al Cho's avatar Al Cho Committed by Greg Kroah-Hartman
Browse files

Staging: add USB ENE card reader driver



This driver is for the ENE card reader that can be found in many
different laptops.  It was written by ENE, but cleaned up to
work properly in the kernel tree by Novell.

Signed-off-by: default avatarAl Cho <acho@novell.com>
Cc: <yiyingc@ene.com.tw>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 15b9e327
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -159,5 +159,7 @@ source "drivers/staging/sbe-2t3e3/Kconfig"

source "drivers/staging/ath6kl/Kconfig"

source "drivers/staging/keucr/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -60,3 +60,4 @@ obj-$(CONFIG_ACPI_QUICKSTART) += quickstart/
obj-$(CONFIG_WESTBRIDGE_ASTORIA)	+= westbridge/astoria/
obj-$(CONFIG_SBE_2T3E3)	+= sbe-2t3e3/
obj-$(CONFIG_ATH6K_LEGACY)	+= ath6kl/
obj-$(CONFIG_USB_ENESTORAGE)	+= keucr/
+13 −0
Original line number Diff line number Diff line
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.
+16 −0
Original line number Diff line number Diff line
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
+0 −0

Empty file added.

Loading