mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 06:32:50 +00:00
misc: mic: depend on X86 for both host and card drivers.
This fixes build failures seen on certain non X86 architectures. The card driver should correctly always depend on X86. The host driver can potentially work on non X86 architectures although it has never been built or validated in such configurations. The host driver dependency on X86 can be removed at some point in the future but this workaround is required for now. Reported-by: Fengguang Wu <fengguang.wu@intel.com> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Signed-off-by: Dasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com> Signed-off-by: Nikhil Rao <nikhil.rao@intel.com> Signed-off-by: Harshavardhan R Kharche <harshavardhan.r.kharche@intel.com> Signed-off-by: Sudeep Dutt <sudeep.dutt@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b019ba959f
commit
80d26236c7
@ -2,7 +2,7 @@ comment "Intel MIC Host Driver"
|
||||
|
||||
config INTEL_MIC_HOST
|
||||
tristate "Intel MIC Host Driver"
|
||||
depends on 64BIT && PCI
|
||||
depends on 64BIT && PCI && X86
|
||||
select VHOST_RING
|
||||
default N
|
||||
help
|
||||
@ -23,7 +23,7 @@ comment "Intel MIC Card Driver"
|
||||
|
||||
config INTEL_MIC_CARD
|
||||
tristate "Intel MIC Card Driver"
|
||||
depends on 64BIT
|
||||
depends on 64BIT && X86
|
||||
select VIRTIO
|
||||
default N
|
||||
help
|
||||
|
Loading…
Reference in New Issue
Block a user