check_udev already checks for udev allocation failure, remove the redundant check.
Signed-off-by: Santosh Sivaraj <[email protected]> --- ndctl/lib/libndctl.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c index 36fb6fe..262d758 100644 --- a/ndctl/lib/libndctl.c +++ b/ndctl/lib/libndctl.c @@ -323,12 +323,9 @@ NDCTL_EXPORT int ndctl_new(struct ndctl_ctx **ctx) dbg(c, "timeout = %ld\n", tmo); } - if (udev) { - c->udev = udev; - c->udev_queue = udev_queue_new(udev); - if (!c->udev_queue) - err(c, "failed to retrieve udev queue\n"); - } + c->udev_queue = udev_queue_new(udev); + if (!c->udev_queue) + err(c, "failed to retrieve udev queue\n"); c->kmod_ctx = kmod_ctx; c->daxctl_ctx = daxctl_ctx; -- 2.30.2 _______________________________________________ Linux-nvdimm mailing list -- [email protected] To unsubscribe send an email to [email protected]
