[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
include
/
media
/
drv-intf
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 cx2341x.h
9,945 B
SET
[ EDIT ]
|
[ DEL ]
📄 cx25840.h
5,512 B
SET
[ EDIT ]
|
[ DEL ]
📄 exynos-fimc.h
4,883 B
SET
[ EDIT ]
|
[ DEL ]
📄 msp3400.h
8,436 B
SET
[ EDIT ]
|
[ DEL ]
📄 renesas-ceu.h
587 B
SET
[ EDIT ]
|
[ DEL ]
📄 s3c_camif.h
1,320 B
SET
[ EDIT ]
|
[ DEL ]
📄 saa7146.h
17,963 B
SET
[ EDIT ]
|
[ DEL ]
📄 saa7146_vv.h
7,758 B
SET
[ EDIT ]
|
[ DEL ]
📄 sh_mobile_ceu.h
866 B
SET
[ EDIT ]
|
[ DEL ]
📄 sh_vou.h
716 B
SET
[ EDIT ]
|
[ DEL ]
📄 si476x.h
1,271 B
SET
[ EDIT ]
|
[ DEL ]
📄 soc_mediabus.h
3,587 B
SET
[ EDIT ]
|
[ DEL ]
📄 tea575x.h
2,750 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: sh_vou.h
/* * SuperH Video Output Unit (VOU) driver header * * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de> * * 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 SH_VOU_H #define SH_VOU_H #include <linux/i2c.h> /* Bus flags */ #define SH_VOU_PCLK_FALLING (1 << 0) #define SH_VOU_HSYNC_LOW (1 << 1) #define SH_VOU_VSYNC_LOW (1 << 2) enum sh_vou_bus_fmt { SH_VOU_BUS_8BIT, SH_VOU_BUS_16BIT, SH_VOU_BUS_BT656, }; struct sh_vou_pdata { enum sh_vou_bus_fmt bus_fmt; int i2c_adap; struct i2c_board_info *board_info; unsigned long flags; }; #endif