Lines Matching defs:sys_device
28 struct sys_device;
34 int (*shutdown)(struct sys_device *);
35 int (*suspend)(struct sys_device *, pm_message_t state);
36 int (*resume)(struct sys_device *);
67 int (*add)(struct sys_device *);
68 int (*remove)(struct sys_device *);
69 int (*shutdown)(struct sys_device *);
70 int (*suspend)(struct sys_device *, pm_message_t state);
71 int (*resume)(struct sys_device *);
84 struct sys_device {
90 extern int sysdev_register(struct sys_device *);
91 extern void sysdev_unregister(struct sys_device *);
96 ssize_t (*show)(struct sys_device *, char *);
97 ssize_t (*store)(struct sys_device *, const char *, size_t);
108 extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *);
109 extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *);