diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-06-15 03:45:53 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-06-21 17:13:26 -0400 |
commit | eef4d8e9f06dd06496ea82400f26379c4de8797c (patch) | |
tree | d250486ef75501e5aaa04af0c9d55eeeed07ca9b /drivers | |
parent | 8c937ab966fdf639e517594b48f06b1f07309072 (diff) | |
download | linux-stable-eef4d8e9f06dd06496ea82400f26379c4de8797c.tar.gz linux-stable-eef4d8e9f06dd06496ea82400f26379c4de8797c.tar.bz2 linux-stable-eef4d8e9f06dd06496ea82400f26379c4de8797c.zip |
media: meye: Fix build COMPILE_TEST error
If COMPILE_TEST is y and SONY_LAPTOP is m,
building fails as below:
Reported-by: Hulk Robot <hulkci@huawei.com>
Fixes: 6159e12e1177 ("media: meye: allow building it with COMPILE_TEST on non-x86")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/pci/meye/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/pci/meye/Kconfig b/drivers/media/pci/meye/Kconfig index b0ba78abbdbb..b37da612dd0c 100644 --- a/drivers/media/pci/meye/Kconfig +++ b/drivers/media/pci/meye/Kconfig @@ -2,7 +2,8 @@ config VIDEO_MEYE tristate "Sony Vaio Picturebook Motion Eye Video For Linux" depends on PCI && VIDEO_V4L2 - depends on SONY_LAPTOP || COMPILE_TEST + depends on SONY_LAPTOP + depends on X86 || COMPILE_TEST help This is the video4linux driver for the Motion Eye camera found in the Vaio Picturebook laptops. Please read the material in |