Skip to content

Commit

Permalink
[SCSI] bsg: Fix build for CONFIG_BLOCK=n
Browse files Browse the repository at this point in the history
BLK_DEV_BSG was added outside of the if BLOCK check, which allows it to
be enabled when CONFIG_BLOCK=n. This leads to many screenlengths of
errors, starting with a parse error on the request_queue_t definition.
Obviously this wasn't intended for CONFIG_BLOCK=n usage, so just move the
option back in to the block.

Caught with a randconfig on sh.

Signed-off-by: Paul Mundt <[email protected]>
Acked-by: Jens Axboe <[email protected]>
Acked-by: FUJITA Tomonori <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
  • Loading branch information
pmundt authored and James Bottomley committed Jul 28, 2007
1 parent 9859c1a commit 99d4d0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions block/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ config LSF

If unsure, say Y.

endif # BLOCK

config BLK_DEV_BSG
bool "Block layer SG support v4 (EXPERIMENTAL)"
depends on EXPERIMENTAL
Expand All @@ -64,4 +62,6 @@ config BLK_DEV_BSG
protocols (e.g. Task Management Functions and SMP in Serial
Attached SCSI).

endif # BLOCK

source block/Kconfig.iosched

0 comments on commit 99d4d0a

Please sign in to comment.