• Mauro Carvalho Chehab's avatar
    [media] include/media: move driver interface headers to a separate dir · d647f0b7
    Mauro Carvalho Chehab authored
    Let's not mix headers used by the core with those headers that
    are needed by some driver-specific interface header.
    
    The headers used on drivers were manually moved using:
        mkdir include/media/drv-intf/
        git mv include/media/cx2341x.h include/media/cx25840.h \
    	include/media/exynos-fimc.h include/media/msp3400.h \
    	include/media/s3c_camif.h include/media/saa7146.h \
    	include/media/saa7146_vv.h  include/media/sh_mobile_ceu.h \
    	include/media/sh_mobile_csi2.h include/media/sh_vou.h \
    	include/media/si476x.h include/media/soc_mediabus.h \
    	include/media/tea575x.h include/media/drv-intf/
    
    And the references for those headers were corrected using:
    
        MAIN_DIR="media/"
        PREV_DIR="media/"
        DIRS="drv-intf/"
    
        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..." >...
    d647f0b7
sh_mobile_csi2.h 986 Bytes