diff options
author | Richard Yao <ryao@gentoo.org> | 2012-11-17 00:07:04 -0500 |
---|---|---|
committer | Richard Yao <ryao@cs.stonybrook.edu> | 2012-11-17 01:07:22 -0500 |
commit | 151d9085b438a6c6bb50385c99f3f1969620114b (patch) | |
tree | 87fb21947c510702e71cb6c221c902ac78ccf232 /src/udev/udev.h | |
parent | a91a7609b204ba01037df4ab314dc81c0589c8cb (diff) |
Eliminate blkid-builtin
Changes to rules were introduced by
7c2dee4a4d7f1b264031daaee786a8fe429884e1 while builtin-blkid support was
introduced in other commits. The removal of systemd resulted in this
code causing linker errors. This code adds complexity with no clear
benefit, so we remove it.
Signed-off-by: Richard Yao <ryao@gentoo.org>
Diffstat (limited to 'src/udev/udev.h')
-rw-r--r-- | src/udev/udev.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/udev/udev.h b/src/udev/udev.h index c10610ea27..23a04f766c 100644 --- a/src/udev/udev.h +++ b/src/udev/udev.h @@ -134,7 +134,6 @@ int udev_ctrl_get_set_children_max(struct udev_ctrl_msg *ctrl_msg); /* built-in commands */ enum udev_builtin_cmd { - UDEV_BUILTIN_BLKID, UDEV_BUILTIN_BTRFS, UDEV_BUILTIN_FIRMWARE, UDEV_BUILTIN_HWDB, @@ -156,7 +155,6 @@ struct udev_builtin { bool (*validate)(struct udev *udev); bool run_once; }; -extern const struct udev_builtin udev_builtin_blkid; extern const struct udev_builtin udev_builtin_btrfs; extern const struct udev_builtin udev_builtin_firmware; extern const struct udev_builtin udev_builtin_hwdb; |