mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
scsi_dh: fix randconfig build error
commit 294ab783ad98066b87296db1311c7ba2a60206a5 upstream. It looks like the Kconfig check that was meant to fix this (commitfe9233fb69
[SCSI] scsi_dh: fix kconfig related build errors) was actually reversed, but no-one noticed until the new set of patches which separated DM and SCSI_DH). Fixes:fe9233fb69
Signed-off-by: Christoph Hellwig <hch@lst.de> Tested-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: James Bottomley <JBottomley@Odin.com> Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
parent
4091728023
commit
3cd0ee5531
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ config DM_MULTIPATH
|
|||
# of SCSI_DH if the latter isn't defined but if
|
||||
# it is, DM_MULTIPATH must depend on it. We get a build
|
||||
# error if SCSI_DH=m and DM_MULTIPATH=y
|
||||
depends on SCSI_DH || !SCSI_DH
|
||||
depends on !SCSI_DH || SCSI
|
||||
---help---
|
||||
Allow volume managers to support multipath hardware.
|
||||
|
||||
|
|
Loading…
Reference in a new issue