summaryrefslogtreecommitdiff
path: root/udev/udev.h
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2011-12-24 17:58:52 +0100
committerKay Sievers <kay.sievers@vrfy.org>2011-12-24 17:58:52 +0100
commit779f4de1b93b77f84527d9916a1af462fc2579a1 (patch)
tree7eb5646c25685e3ce8e70a200fcce309f51cfe84 /udev/udev.h
parentf775ccfcf2fadfc1224405b676a8b64d2a19f3ad (diff)
builtin: rename load()/unload() to init()/exit()
Diffstat (limited to 'udev/udev.h')
-rw-r--r--udev/udev.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/udev/udev.h b/udev/udev.h
index aafa15cd31..430958a457 100644
--- a/udev/udev.h
+++ b/udev/udev.h
@@ -159,8 +159,8 @@ struct udev_builtin {
const char *name;
int (*cmd)(struct udev_device *dev, int argc, char *argv[], bool test);
const char *help;
- int (*load)(struct udev *udev);
- int (*unload)(struct udev *udev);
+ int (*init)(struct udev *udev);
+ int (*exit)(struct udev *udev);
bool run_once;
};
extern const struct udev_builtin udev_builtin_path_id;