|
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 | : | 22.83 GB of 70.42 GB (32.42%) |
|
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/
include/
linux/
mmc/
- drwxr-xr-x
|
Viewing file: sdhci-spear.h (1.21 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * include/linux/mmc/sdhci-spear.h * * SDHCI declarations specific to ST SPEAr platform * * Copyright (C) 2010 ST Microelectronics * Viresh Kumar<viresh.kumar@st.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */
#ifndef MMC_SDHCI_SPEAR_H #define MMC_SDHCI_SPEAR_H
#include <linux/platform_device.h> /* * struct sdhci_plat_data: spear sdhci platform data structure * * @card_power_gpio: gpio pin for enabling/disabling power to sdhci socket * @power_active_high: if set, enable power to sdhci socket by setting * card_power_gpio * @power_always_enb: If set, then enable power on probe, otherwise enable only * on card insertion and disable on card removal. * card_int_gpio: gpio pin used for card detection */ struct sdhci_plat_data { int card_power_gpio; int power_active_high; int power_always_enb; int card_int_gpio; };
/* This function is used to set platform_data field of pdev->dev */ static inline void sdhci_set_plat_data(struct platform_device *pdev, struct sdhci_plat_data *data) { pdev->dev.platform_data = data; }
#endif /* MMC_SDHCI_SPEAR_H */
|