forked from torvalds/linux
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
ZEN: Add VHBA driver
remote git://git.code.sf.net/p/cdemu/code tag vhba-module-20200106
- Loading branch information
Showing
5 changed files
with
1,102 additions
and
0 deletions.
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 |
|---|---|---|
| @@ -1522,4 +1522,6 @@ endif # SCSI_LOWLEVEL | ||
|
|
||
| source "drivers/scsi/device_handler/Kconfig" | ||
|
|
||
| source "drivers/scsi/vhba/Kconfig" | ||
|
|
||
| endmenu | ||
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,9 @@ | ||
| config VHBA | ||
| tristate "Virtual (SCSI) Host Bus Adapter" | ||
| depends on SCSI | ||
| ---help--- | ||
| This is the in-kernel part of CDEmu, a CD/DVD-ROM device | ||
| emulator. | ||
|
|
||
| This driver can also be built as a module. If so, the module | ||
| will be called vhba. |
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,4 @@ | ||
| VHBA_VERSION := 20200106 | ||
|
|
||
| obj-$(CONFIG_VHBA) += vhba.o | ||
| ccflags-y := -DVHBA_VERSION=\"$(VHBA_VERSION)\" -Werror |
Oops, something went wrong.