diff options
author | James Bottomley <James.Bottomley@steeleye.com> | 2007-07-19 10:15:10 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-19 12:37:34 -0500 |
commit | 80ed71ce1a3369521c693ebf30abb9cfe1dc7e66 (patch) | |
tree | f439b74804b10b04a34fe0c3f4c4597f1f7e890a /block/Kconfig | |
parent | b02b6bc46571b21a545c9e697df1e226ff22bc81 (diff) | |
download | op-kernel-dev-80ed71ce1a3369521c693ebf30abb9cfe1dc7e66.zip op-kernel-dev-80ed71ce1a3369521c693ebf30abb9cfe1dc7e66.tar.gz |
[SCSI] bsg: separate bsg and SCSI (so SCSI can be modular)
This patch moves the bsg registration into SCSI so that bsg no longer
has a dependency on the scsi_interface_register API.
This can be viewed as a temporary expedient until we can get universal
bsg binding sorted out properly. Also use the sdev bus_id as the
generic bsg name (to avoid clashes with the queue name).
Acked-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'block/Kconfig')
-rw-r--r-- | block/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/Kconfig b/block/Kconfig index 0768741..ca2ef4e 100644 --- a/block/Kconfig +++ b/block/Kconfig @@ -53,7 +53,7 @@ endif # BLOCK config BLK_DEV_BSG bool "Block layer SG support v4 (EXPERIMENTAL)" - depends on (SCSI=y) && EXPERIMENTAL + depends on EXPERIMENTAL ---help--- Saying Y here will enable generic SG (SCSI generic) v4 support for any block device. |