diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-04-20 18:55:13 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-05 18:41:58 +0300 |
commit | 6159e12e11770fb25e748af90f6c5206c1df09ee (patch) | |
tree | 3d92733b1857ad4ded93ca3e42f3e57762cebbe7 /drivers/media/pci/meye | |
parent | 51d4fd2b87e0d01f88b3b74e1cf312fc66446708 (diff) | |
download | linux-6159e12e11770fb25e748af90f6c5206c1df09ee.tar.xz |
media: meye: allow building it with COMPILE_TEST on non-x86
This driver depends on sony-laptop driver, but this is available
only for x86. So, add a stub function, in order to allow building
it on non-x86 too.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/pci/meye')
-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 b4bf848be5a0..2e60334ffef5 100644 --- a/drivers/media/pci/meye/Kconfig +++ b/drivers/media/pci/meye/Kconfig @@ -1,6 +1,7 @@ config VIDEO_MEYE tristate "Sony Vaio Picturebook Motion Eye Video For Linux" - depends on PCI && SONY_LAPTOP && VIDEO_V4L2 + depends on PCI && VIDEO_V4L2 + depends on SONY_LAPTOP || COMPILE_TEST ---help--- This is the video4linux driver for the Motion Eye camera found in the Vaio Picturebook laptops. Please read the material in |