|
| static ssize_t | show_release (struct device *class, struct device_attribute *attr, char *buf) |
| | show_release
|
| |
| static ssize_t | show_videostatus (struct device *class, struct device_attribute *attr, char *buf) |
| | show_videostatus
|
| |
| static ssize_t | show_informations (struct device *class, struct device_attribute *attr, char *buf) |
| | show_informations
|
| |
| static ssize_t | show_fps (struct device *class, struct device_attribute *attr, char *buf) |
| | show_fps
|
| |
| static ssize_t | show_brightness (struct device *class, struct device_attribute *attr, char *buf) |
| | show_brightness
|
| |
| static ssize_t | store_brightness (struct device *class, struct device_attribute *attr, const char *buf, size_t count) |
| | store_brightness
|
| |
| static ssize_t | show_contrast (struct device *class, struct device_attribute *attr, char *buf) |
| | show_contrast
|
| |
| static ssize_t | store_contrast (struct device *class, struct device_attribute *attr, const char *buf, size_t count) |
| | store_contrast
|
| |
| static ssize_t | show_whitebalance (struct device *class, struct device_attribute *attr, char *buf) |
| | show_whitebalance
|
| |
| static ssize_t | store_whitebalance (struct device *class, struct device_attribute *attr, const char *buf, size_t count) |
| | store_whitebalance
|
| |
| static ssize_t | show_colour (struct device *class, struct device_attribute *attr, char *buf) |
| | show_colour
|
| |
| static ssize_t | store_colour (struct device *class, struct device_attribute *attr, const char *buf, size_t count) |
| | store_colour
|
| |
| static ssize_t | show_hflip (struct device *class, struct device_attribute *attr, char *buf) |
| | show_hflip
|
| |
| static ssize_t | store_hflip (struct device *class, struct device_attribute *attr, const char *buf, size_t count) |
| | store_hflip
|
| |
| static ssize_t | show_vflip (struct device *class, struct device_attribute *attr, char *buf) |
| | show_vflip
|
| |
| static ssize_t | store_vflip (struct device *class, struct device_attribute *attr, const char *buf, size_t count) |
| | store_vflip
|
| |
| static | DEVICE_ATTR (release, S_IRUGO, show_release, NULL) |
| |
| static | DEVICE_ATTR (videostatus, S_IRUGO, show_videostatus, NULL) |
| |
| static | DEVICE_ATTR (informations, S_IRUGO, show_informations, NULL) |
| |
| static | DEVICE_ATTR (fps, S_IRUGO, show_fps, NULL) |
| |
| static | DEVICE_ATTR (brightness, S_IRUGO|S_IWUGO, show_brightness, store_brightness) |
| |
| static | DEVICE_ATTR (contrast, S_IRUGO|S_IWUGO, show_contrast, store_contrast) |
| |
| static | DEVICE_ATTR (whitebalance, S_IRUGO|S_IWUGO, show_whitebalance, store_whitebalance) |
| |
| static | DEVICE_ATTR (colour, S_IRUGO|S_IWUGO, show_colour, store_colour) |
| |
| static | DEVICE_ATTR (hflip, S_IRUGO|S_IWUGO, show_hflip, store_hflip) |
| |
| static | DEVICE_ATTR (vflip, S_IRUGO|S_IWUGO, show_vflip, store_vflip) |
| |
| int | stk11xx_create_sysfs_files (struct video_device *vdev) |
| | Create the 'sys' entries.
|
| |
| void | stk11xx_remove_sysfs_files (struct video_device *vdev) |
| | Remove the 'sys' entries.
|
| |
Driver for Syntek USB video camera.
- Author
- Nicolas VIVIEN
- Date
- 2006-10-23
- Version
- v2.2.x
- Note
- Copyright (C) Nicolas VIVIEN
- Licences
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- SubVersion
- $Date$ $Revision$ $Author$ $HeadURL$
Definition in file stk11xx-sysfs.c.