mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-05-24 23:56:33 +00:00

Let's not mix platform_data headers with the core headers. Instead, let's create a subdir at linux/platform_data and move the headers to that common place, adding it to MAINTAINERS. The headers were moved with: mkdir include/linux/platform_data/media/; git mv include/media/gpio-ir-recv.h include/media/ir-rx51.h include/media/mmp-camera.h include/media/omap1_camera.h include/media/omap4iss.h include/media/s5p_hdmi.h include/media/si4713.h include/media/sii9234.h include/media/smiapp.h include/media/soc_camera.h include/media/soc_camera_platform.h include/media/timb_radio.h include/media/timb_video.h include/linux/platform_data/media/ And the references fixed with this script: MAIN_DIR="linux/platform_data/" PREV_DIR="media/" DIRS="media/" echo "Checking affected files" >&2 for i in $DIRS; do for j in $(find include/$MAIN_DIR/$i -type f -name '*.h'); do n=`basename $j` git grep -l $n done done|sort|uniq >files && ( echo "Handling files..." >&2; echo "for i in \$(cat files|grep -v Documentation); do cat \$i | \\"; ( cd include/$MAIN_DIR; for j in $DIRS; do for i in $(ls $j); do echo "perl -ne 's,(include [\\\"\\<])$PREV_DIR($i)([\\\"\\>]),\1$MAIN_DIR$j\2\3,; print \$_' |\\"; done; done; echo "cat > a && mv a \$i; done"; ); echo "Handling documentation..." >&2; echo "for i in MAINTAINERS \$(cat files); do cat \$i | \\"; ( cd include/$MAIN_DIR; for j in $DIRS; do for i in $(ls $j); do echo " perl -ne 's,include/$PREV_DIR($i)\b,include/$MAIN_DIR$j\1,; print \$_' |\\"; done; done; echo "cat > a && mv a \$i; done" ); ) >script && . ./script Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Lee Jones <lee.jones@linaro.org> Acked-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
36 lines
880 B
C
36 lines
880 B
C
/*
|
|
* Header for V4L2 SoC Camera driver for OMAP1 Camera Interface
|
|
*
|
|
* Copyright (C) 2010, Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __MEDIA_OMAP1_CAMERA_H_
|
|
#define __MEDIA_OMAP1_CAMERA_H_
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#define OMAP1_CAMERA_IOSIZE 0x1c
|
|
|
|
enum omap1_cam_vb_mode {
|
|
OMAP1_CAM_DMA_CONTIG = 0,
|
|
OMAP1_CAM_DMA_SG,
|
|
};
|
|
|
|
#define OMAP1_CAMERA_MIN_BUF_COUNT(x) ((x) == OMAP1_CAM_DMA_CONTIG ? 3 : 2)
|
|
|
|
struct omap1_cam_platform_data {
|
|
unsigned long camexclk_khz;
|
|
unsigned long lclk_khz_max;
|
|
unsigned long flags;
|
|
};
|
|
|
|
#define OMAP1_CAMERA_LCLK_RISING BIT(0)
|
|
#define OMAP1_CAMERA_RST_LOW BIT(1)
|
|
#define OMAP1_CAMERA_RST_HIGH BIT(2)
|
|
|
|
#endif /* __MEDIA_OMAP1_CAMERA_H_ */
|