2003-07-17 01:24:51 -07:00
/*
* namedev . h
*
* Userspace devfs
*
* Copyright ( C ) 2003 Greg Kroah - Hartman < greg @ kroah . com >
*
* 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 version 2 of the License .
*
* 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 . ,
* 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*
*/
# ifndef NAMEDEV_H
# define NAMEDEV_H
2003-08-05 23:57:23 -07:00
# include "udev.h"
2003-07-23 18:56:56 -04:00
# include "list.h"
2003-07-19 05:06:55 -07:00
struct sysfs_class_device ;
2003-07-17 01:24:51 -07:00
# define COMMENT_CHARACTER '#'
2003-07-23 18:56:56 -04:00
enum config_type {
KERNEL_NAME = 0 , /* must be 0 to let memset() default to this value */
LABEL = 1 ,
NUMBER = 2 ,
TOPOLOGY = 3 ,
REPLACE = 4 ,
2003-10-14 23:32:17 -07:00
CALLOUT = 5 ,
2003-07-23 18:56:56 -04:00
} ;
# define BUS_SIZE 30
# define FILE_SIZE 50
# define VALUE_SIZE 100
# define ID_SIZE 50
# define PLACE_SIZE 50
struct config_device {
struct list_head node ;
enum config_type type ;
char bus [ BUS_SIZE ] ;
char sysfs_file [ FILE_SIZE ] ;
char sysfs_value [ VALUE_SIZE ] ;
char id [ ID_SIZE ] ;
char place [ PLACE_SIZE ] ;
char kernel_name [ NAME_SIZE ] ;
2003-10-14 23:32:17 -07:00
char exec_program [ FILE_SIZE ] ;
2003-07-23 18:56:56 -04:00
/* what to set the device to */
2003-10-21 22:28:32 -07:00
char name [ NAME_SIZE ] ;
char owner [ OWNER_SIZE ] ;
char group [ GROUP_SIZE ] ;
mode_t mode ;
2003-07-23 18:56:56 -04:00
} ;
2003-07-17 01:24:51 -07:00
extern int namedev_init ( void ) ;
2003-10-21 22:28:32 -07:00
extern int namedev_name_device ( struct sysfs_class_device * class_dev , struct udevice * dev ) ;
2003-07-17 01:24:51 -07:00
# endif