|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 20.11 GB of 70.42 GB (28.56%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
linux-headers-3.0.0-14/
arch/
arm/
plat-mxc/
include/
mach/
- drwxr-xr-x
|
Viewing file: mx1_camera.h (1.02 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * mx1_camera.h - i.MX1/i.MXL camera driver header file * * Copyright (c) 2008, Paulius Zaleckas <paulius.zaleckas@teltonika.lt> * Copyright (C) 2009, Darius Augulis <augulis.darius@gmail.com> * * Based on PXA camera.h file: * Copyright (C) 2003, Intel Corporation * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.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 __ASM_ARCH_CAMERA_H_ #define __ASM_ARCH_CAMERA_H_
#define MX1_CAMERA_DATA_HIGH 1 #define MX1_CAMERA_PCLK_RISING 2 #define MX1_CAMERA_VSYNC_HIGH 4
extern unsigned char mx1_camera_sof_fiq_start, mx1_camera_sof_fiq_end;
/** * struct mx1_camera_pdata - i.MX1/i.MXL camera platform data * @mclk_10khz: master clock frequency in 10kHz units * @flags: MX1 camera platform flags */ struct mx1_camera_pdata { unsigned long mclk_10khz; unsigned long flags; };
#endif /* __ASM_ARCH_CAMERA_H_ */
|