forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[media] marvell-cam: Move cafe-ccic into its own directory
This driver will soon become a family of drivers, so let's give it its own place to live. This move requires putting ov7670.h into include/media, but there are no code changes. Cc: Daniel Drake <[email protected]> Signed-off-by: Jonathan Corbet <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
- Loading branch information
Jonathan Corbet
authored and
Mauro Carvalho Chehab
committed
Jul 27, 2011
1 parent
bd7319d
commit f8fc729
Showing
8 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
config VIDEO_CAFE_CCIC | ||
tristate "Marvell 88ALP01 (Cafe) CMOS Camera Controller support" | ||
depends on PCI && I2C && VIDEO_V4L2 | ||
select VIDEO_OV7670 | ||
---help--- | ||
This is a video4linux2 driver for the Marvell 88ALP01 integrated | ||
CMOS camera controller. This is the controller found on first- | ||
generation OLPC systems. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_VIDEO_CAFE_CCIC) += cafe_ccic.o |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,7 @@ | |
#include <media/v4l2-device.h> | ||
#include <media/v4l2-chip-ident.h> | ||
#include <media/v4l2-mediabus.h> | ||
|
||
#include "ov7670.h" | ||
#include <media/ov7670.h> | ||
|
||
MODULE_AUTHOR("Jonathan Corbet <[email protected]>"); | ||
MODULE_DESCRIPTION("A low-level driver for OmniVision ov7670 sensors"); | ||
|
File renamed without changes.