summaryrefslogtreecommitdiff
path: root/include/linux/sysdev.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.osdl.org>2003-08-31 00:12:13 -0700
committerLinus Torvalds <torvalds@home.osdl.org>2003-08-31 00:12:13 -0700
commit5dbafd2326c4cbb6a62c5bb8cb6e248b13375836 (patch)
treebd68d6e2cc561d002dec6ded044b152de3659c95 /include/linux/sysdev.h
parentb9bf6a33adefa9d32cbe584375c0991761f45281 (diff)
parent7fbfb09e7f56b4f234a11d38159d4448e904b9b2 (diff)
Merge bk://linux-dj.bkbits.net/agpgart
into home.osdl.org:/home/torvalds/v2.5/linux
Diffstat (limited to 'include/linux/sysdev.h')
-rw-r--r--include/linux/sysdev.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/sysdev.h b/include/linux/sysdev.h
index 4bc3e22b5104..2a90db8d41de 100644
--- a/include/linux/sysdev.h
+++ b/include/linux/sysdev.h
@@ -31,10 +31,8 @@ struct sysdev_class {
/* Default operations for these types of devices */
int (*shutdown)(struct sys_device *);
- int (*save)(struct sys_device *, u32 state);
int (*suspend)(struct sys_device *, u32 state);
int (*resume)(struct sys_device *);
- int (*restore)(struct sys_device *);
struct kset kset;
};
@@ -52,10 +50,8 @@ struct sysdev_driver {
int (*add)(struct sys_device *);
int (*remove)(struct sys_device *);
int (*shutdown)(struct sys_device *);
- int (*save)(struct sys_device *, u32 state);
int (*suspend)(struct sys_device *, u32 state);
int (*resume)(struct sys_device *);
- int (*restore)(struct sys_device *);
};